From 365a010732a59de85c3747f4a2df56c4ce4762ae Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sat, 5 Sep 2015 01:32:12 -0700 Subject: Don't store the HRTF request mode in the device flags --- OpenAL32/Include/alMain.h | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'OpenAL32/Include/alMain.h') 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) -- cgit v1.2.3