From 36c745a5149fe196b2ea8c058d2d3391db3dde8b Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Wed, 25 Dec 2019 18:32:53 -0800 Subject: [PATCH] Fix parameter order --- alc/filters/biquad.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/alc/filters/biquad.h b/alc/filters/biquad.h index 402c76b2..a8bc86e7 100644 --- a/alc/filters/biquad.h +++ b/alc/filters/biquad.h @@ -86,7 +86,7 @@ public: void setParamsFromSlope(BiquadType type, Real f0norm, Real gain, Real slope) { gain = std::max(gain, 0.001f); /* Limit -60dB */ - setParams(type, gain, f0norm, rcpQFromSlope(gain, slope)); + setParams(type, f0norm, gain, rcpQFromSlope(gain, slope)); } /** @@ -102,7 +102,7 @@ public: * \param bandwidth Normalized bandwidth of the transition band. */ void setParamsFromBandwidth(BiquadType type, Real f0norm, Real gain, Real bandwidth) - { setParams(type, gain, f0norm, rcpQFromBandwidth(f0norm, bandwidth)); } + { setParams(type, f0norm, gain, rcpQFromBandwidth(f0norm, bandwidth)); } void copyParamsFrom(const BiquadFilterR &other) {