aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-10-06 01:16:07 -0700
committerChris Robinson <[email protected]>2011-10-06 01:16:07 -0700
commita7d3779dfafbc7b5011ea7d1b252d94daed969f6 (patch)
tree02521cea8acdf465152acc802329b706daeffd97 /OpenAL32
parent75fee8c11f76889285e3b68cc1f3d13e92dacc26 (diff)
Check for the HRTF object instead of a flag
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alMain.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index 3c47d024..a6ef8bb3 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -692,12 +692,10 @@ struct ALCdevice_struct
// Duplicate stereo sources on the side/rear channels
#define DEVICE_DUPLICATE_STEREO (1<<0)
-// Use HRTF filters for mixing sounds
-#define DEVICE_USE_HRTF (1<<1)
// Frequency was requested by the app or config file
-#define DEVICE_FREQUENCY_REQUEST (1<<2)
+#define DEVICE_FREQUENCY_REQUEST (1<<1)
// Channel configuration was requested by the config file
-#define DEVICE_CHANNELS_REQUEST (1<<3)
+#define DEVICE_CHANNELS_REQUEST (1<<2)
// Specifies if the device is currently running
#define DEVICE_RUNNING (1<<31)