diff options
author | Chris Robinson <[email protected]> | 2011-05-06 01:59:32 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-05-06 01:59:32 -0700 |
commit | e608317e704b746ad52999d9cd15c8f2030e5c19 (patch) | |
tree | e96be71e81355490c344834fa928038c26d76fa5 | |
parent | 64b5d7a5192af79846a4a24a18a8757d41c9e36a (diff) |
Fix device flag value
-rw-r--r-- | OpenAL32/Include/alMain.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index bb8784b7..5a19b2ed 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -525,7 +525,7 @@ struct ALCdevice_struct // Frequency was requested by the app or config file #define DEVICE_FREQUENCY_REQUEST (1<<2) // Channel configuration was requested by the config file -#define DEVICE_CHANNELS_REQUEST (1<<2) +#define DEVICE_CHANNELS_REQUEST (1<<3) struct ALCcontext_struct |