diff options
author | Chris Robinson <[email protected]> | 2012-08-09 05:38:07 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-08-09 05:38:07 -0700 |
commit | d6fd52a0e544dee1e8ae2a1ec908ec689e9f2ae1 (patch) | |
tree | fad4d5ac9270d20493dcdada98ca34d0b6d7dbae /OpenAL32 | |
parent | 0dde7dd88a24a59a484ec36bc26bec19e0ee7d0a (diff) |
Add an option for wide stereo sources
Replaces the old stereodup option
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index f5d76b10..296461c0 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -612,6 +612,9 @@ struct ALCdevice_struct // Sample type was requested by the config file #define DEVICE_SAMPLE_TYPE_REQUEST (1<<3) +// Stereo sources cover 120-degree angles around +/-90 +#define DEVICE_WIDE_STEREO (1<<16) + // Specifies if the device is currently running #define DEVICE_RUNNING (1<<31) |