diff options
author | Chris Robinson <[email protected]> | 2014-11-07 16:11:47 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-11-07 16:11:47 -0800 |
commit | b34a374fa7801b64fddcfd1fa57188fb5f5303a8 (patch) | |
tree | 7039088caf77ae5183570256f94872dd3d836408 /Alc/ALc.c | |
parent | 35eacf058ec2be250e90aeafd145e5e159d0fd8f (diff) |
Only enable the BS2B filter with stereo output
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1969,7 +1969,8 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList) } TRACE("HRTF %s\n", device->Hrtf?"enabled":"disabled"); - if(!device->Hrtf && device->Bs2bLevel > 0 && device->Bs2bLevel <= 6) + if(!device->Hrtf && device->Bs2bLevel > 0 && device->Bs2bLevel <= 6 && + device->FmtChans == DevFmtStereo) { if(!device->Bs2b) { |