diff --git a/Hx_PlateReverb/effect_platervbstereo.h b/Hx_PlateReverb/effect_platervbstereo.h index 650d5d2..70a098a 100644 --- a/Hx_PlateReverb/effect_platervbstereo.h +++ b/Hx_PlateReverb/effect_platervbstereo.h @@ -98,7 +98,7 @@ public: void lowpass(float n) { n = constrain(n, 0.0, 1.0); - n = map(n, 0.0, 1.0, 0.05, 1.0); + n = map(n*n*n, 0.0, 1.0, 0.05, 1.0); master_lowpass_f = n; }