aboutsummaryrefslogtreecommitdiffstats
path: root/alc/effects/reverb.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2021-04-24 13:46:52 -0700
committerChris Robinson <[email protected]>2021-04-24 13:46:52 -0700
commit440ce71dcedb39e827660d0925b6cc2046c6d0f0 (patch)
treed8d5f11c71bf8d2852e176a9ec55e0cd1dc140b3 /alc/effects/reverb.cpp
parentf10cc1e1acb11bbabd5a16b62e0d435d6b1e9337 (diff)
Move GetHFOrderScales to a more appropriate place
Diffstat (limited to 'alc/effects/reverb.cpp')
-rw-r--r--alc/effects/reverb.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/alc/effects/reverb.cpp b/alc/effects/reverb.cpp
index 1260748c..2af7472d 100644
--- a/alc/effects/reverb.cpp
+++ b/alc/effects/reverb.cpp
@@ -32,7 +32,7 @@
#include "alcmain.h"
#include "alcontext.h"
#include "alnumeric.h"
-#include "bformatdec.h"
+#include "core/ambidefs.h"
#include "core/filters/biquad.h"
#include "effectslot.h"
#include "vector.h"
@@ -665,7 +665,7 @@ void ReverbState::deviceUpdate(const DeviceBase *device, const Buffer&)
if(device->mAmbiOrder > 1)
{
mMixOut = &ReverbState::MixOutAmbiUp;
- mOrderScales = BFormatDec::GetHFOrderScales(1, device->mAmbiOrder);
+ mOrderScales = AmbiScale::GetHFOrderScales(1, device->mAmbiOrder);
}
else
{