From 32a97b572a4a9638c7a1651544c4e54ed14c2da0 Mon Sep 17 00:00:00 2001 From: pio Date: Mon, 4 Jan 2021 09:08:32 +0100 Subject: [PATCH] semilog taper for lowpass control --- Hx_PlateReverb/effect_platervbstereo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }