diff options
author | Chris Robinson <[email protected]> | 2023-01-08 00:09:19 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-01-08 00:09:19 -0800 |
commit | 9a91682d708bbdeb459fca50191afc41ca44c195 (patch) | |
tree | 605cc1dd88748a5835f0441f2e9110cbdecbf143 /alc | |
parent | 625e64cc8dc63d22dc0c190917e7c60eba467d61 (diff) |
Update some config comments
Diffstat (limited to 'alc')
-rw-r--r-- | alc/alc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/alc.cpp b/alc/alc.cpp index d3b4f5e7..40ca9a44 100644 --- a/alc/alc.cpp +++ b/alc/alc.cpp @@ -1779,7 +1779,7 @@ ALCenum UpdateDeviceParams(ALCdevice *device, const int *attrList) if(auto encopt = device->configValue<std::string>(nullptr, "stereo-encoding")) { const char *mode{encopt->c_str()}; - if(al::strcasecmp(mode, "panpot") == 0) + if(al::strcasecmp(mode, "basic") == 0 || al::strcasecmp(mode, "panpot") == 0) stereomode = StereoEncoding::Basic; else if(al::strcasecmp(mode, "uhj") == 0) stereomode = StereoEncoding::Uhj; |