zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

commit d14b29a90445a524d236fb319dacb4c676848002
parent 0f667c895a96f8de2dc988b2cd5bf8beca09ac65
Author: Friedolino <[email protected]>
Date:   Tue, 22 Jun 2021 18:02:18 +0200

fix type mapping for fake bode plots

Diffstat:
Msrc/Params/FilterParams.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Params/FilterParams.cpp b/src/Params/FilterParams.cpp @@ -214,7 +214,7 @@ const rtosc::Ports FilterParams::ports = { float gain = dB2rap(obj->getgain()); if(obj->Ptype != 6 && obj->Ptype != 7 && obj->Ptype != 8) gain = 1.0; - auto cf = AnalogFilter::computeCoeff(obj->Ptype, + auto cf = AnalogFilter::computeCoeff(4-obj->Ptype, Filter::getrealfreq(obj->getfreq()), obj->getq(), obj->Pstages, gain, 48000, order);