diff options
author | Chris Robinson <[email protected]> | 2015-09-05 01:32:12 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2015-09-05 01:32:12 -0700 |
commit | 365a010732a59de85c3747f4a2df56c4ce4762ae (patch) | |
tree | bd4ddb3d08177e844f61d635ecd8f3ef0619537d /OpenAL32 | |
parent | 804909e1d75a607ec7b32502b326756b0069e8d7 (diff) |
Don't store the HRTF request mode in the device flags
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index c9e5e748..bdc854fc 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -716,7 +716,7 @@ struct ALCdevice_struct struct bs2b *Bs2b; // Device flags - ALuint Flags; + ALuint Flags; enum Channel ChannelName[MAX_OUTPUT_CHANNELS]; ChannelConfig AmbiCoeffs[MAX_OUTPUT_CHANNELS]; @@ -763,13 +763,6 @@ struct ALCdevice_struct #define DEVICE_CHANNELS_REQUEST (1<<2) // Sample type was requested by the config file #define DEVICE_SAMPLE_TYPE_REQUEST (1<<3) -// Mask and flags to indicate HRTF mode requested -#define DEVICE_HRTF_REQUEST_MASK ((1<<4) | (1<<5)) -enum HrtfRequestMode { - Hrtf_Default = 0, - Hrtf_Enable = 1<<4, - Hrtf_Disable = 2<<4, -}; // Specifies if the DSP is paused at user request #define DEVICE_PAUSED (1<<30) |