diff options
author | Chris Robinson <[email protected]> | 2022-09-04 09:09:12 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-09-04 09:09:12 -0700 |
commit | 14bb4ad1b7a0126fe5dfdd2e62bea750ce12d961 (patch) | |
tree | e7b9ec6f392ffed2a71a92f7f2ab9a6a7141b679 /alc/effects/reverb.cpp | |
parent | f2ff2bb2f6f2f9190210b60833b4232fe5398b07 (diff) |
Allow different HF scales for 2D mixing/output
Not actually used yet, the device needs to track whether it's using 2D or 3D
mixing.
Diffstat (limited to 'alc/effects/reverb.cpp')
-rw-r--r-- | alc/effects/reverb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/effects/reverb.cpp b/alc/effects/reverb.cpp index 71640a87..554fb341 100644 --- a/alc/effects/reverb.cpp +++ b/alc/effects/reverb.cpp @@ -686,7 +686,7 @@ void ReverbState::deviceUpdate(const DeviceBase *device, const Buffer&) if(device->mAmbiOrder > 1) { mUpmixOutput = true; - mOrderScales = AmbiScale::GetHFOrderScales(1, device->mAmbiOrder); + mOrderScales = AmbiScale::GetHFOrderScales(1, device->mAmbiOrder, false); } else { |