diff options
author | Chris Robinson <[email protected]> | 2012-02-15 16:26:32 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-02-15 16:26:32 -0800 |
commit | fecd679f33f32280192398e2881f12359b980a8c (patch) | |
tree | c2ee51286912ddb1a24156ad8d6f99a702dc9537 /OpenAL32/Include | |
parent | 2ab0e3521cf26bf5b6c13af76557d959e35ad31a (diff) |
Add a device request flag for the sample type
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alMain.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 2a1c1b3b..3deaad56 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -630,6 +630,8 @@ struct ALCdevice_struct #define DEVICE_FREQUENCY_REQUEST (1<<1) // Channel configuration was requested by the config file #define DEVICE_CHANNELS_REQUEST (1<<2) +// Sample type was requested by the config file +#define DEVICE_SAMPLE_TYPE_REQUEST (1<<3) // Specifies if the device is currently running #define DEVICE_RUNNING (1<<31) |