diff options
author | Chris Robinson <[email protected]> | 2022-04-15 01:45:24 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-04-15 01:45:24 -0700 |
commit | 144e30a9490fd86ca6ee00fdd3823ed3e99529c1 (patch) | |
tree | 02704b3a4131d0ae106cf2074d15ad71a9597943 /alc/device.h | |
parent | 12dd7bee906186cc3dc0d09977a977987f9d8557 (diff) |
Update the ALC_SOFT_output_mode surround enums
The values are identical to the matching loopback channel configuration enums,
so for example ALC_5POINT1_SOFT is interchangable with ALC_SURROUND_5_1_SOFT,
this is simply providing a cleaner styling for potential future modes.
Diffstat (limited to 'alc/device.h')
-rw-r--r-- | alc/device.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/alc/device.h b/alc/device.h index 44dfebd5..62ed0346 100644 --- a/alc/device.h +++ b/alc/device.h @@ -105,9 +105,9 @@ struct ALCdevice : public al::intrusive_ref<ALCdevice>, DeviceBase { Uhj2 = ALC_STEREO_UHJ_SOFT, Hrtf = ALC_STEREO_HRTF_SOFT, Quad = ALC_QUAD_SOFT, - X51 = ALC_5POINT1_SOFT, - X61 = ALC_6POINT1_SOFT, - X71 = ALC_7POINT1_SOFT + X51 = ALC_SURROUND_5_1_SOFT, + X61 = ALC_SURROUND_6_1_SOFT, + X71 = ALC_SURROUND_7_1_SOFT }; OutputMode1 getOutputMode1() const noexcept; |