summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-11-24 21:03:14 +0100
committerRobin Gareus <robin@gareus.org>2016-11-24 21:03:56 +0100
commita2c0b10d8a6cf4ab5a0fdcdfe157c35c0ed9a709 (patch)
treefffc8ceaf22d6c38c03395b419880f633bc16340 /scripts
parentc876aea64dc57f59937f8bb2337f6ffc19b98c0d (diff)
a-High/LowPass allow 8K samples inclusive
Diffstat (limited to 'scripts')
-rw-r--r--scripts/HiAndLowPass.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/HiAndLowPass.lua b/scripts/HiAndLowPass.lua
index 5dd3dfa558..75704d9701 100644
--- a/scripts/HiAndLowPass.lua
+++ b/scripts/HiAndLowPass.lua
@@ -177,7 +177,7 @@ end
-- the actual DSP callback
function dsp_run (ins, outs, n_samples)
- assert (n_samples < 8192)
+ assert (n_samples <= 8192)
assert (#ins == chn)
local ctrl = santize_params (CtrlPorts:array ())