From da41e4fce4d5a5738eff0b7b028022b8c84167fe Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 19 Apr 2022 00:45:30 +0200 Subject: [PATCH] Ace-Hi/Lo: Fix multi-channel LPF (typo in 4f43d5d024606) --- share/scripts/HiAndLowPass.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/scripts/HiAndLowPass.lua b/share/scripts/HiAndLowPass.lua index 9945187b2b..77b1ce0dd8 100644 --- a/share/scripts/HiAndLowPass.lua +++ b/share/scripts/HiAndLowPass.lua @@ -181,7 +181,7 @@ function apply_params (ctrl) for k = 1,4 do if not (k == 1 and c == 1) then hp[c][k]:configure (hp[1][1]) - lp[c][k]:configure (hp[1][1]) + lp[c][k]:configure (lp[1][1]) end end end