aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alMain.h9
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)