summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-08-28 00:02:16 +0200
committerRobin Gareus <robin@gareus.org>2016-08-28 00:02:16 +0200
commit90a5fbdb27f2e69741224ac0d5acaff7fcdd022c (patch)
tree9ee46d2b5821e9b293708a274e2311997fd7ea70 /scripts
parentbddcb9eb1fddb20a8d4e900676fd793afa0f5997 (diff)
fix typo in notch example script
Diffstat (limited to 'scripts')
-rw-r--r--scripts/_notch_bank.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/_notch_bank.lua b/scripts/_notch_bank.lua
index 68c1942c5a..03a8dbf22f 100644
--- a/scripts/_notch_bank.lua
+++ b/scripts/_notch_bank.lua
@@ -110,7 +110,7 @@ function dsp_run (ins, outs, n_samples)
for c = 1, chn do
-- when not processing in-place, copy the data from input to output first
if not ins[c]:sameinstance (outs[c]) then
- ARDOUR.DSP.copy_vector (outs[c], outs[c], n_samples)
+ ARDOUR.DSP.copy_vector (outs[c], ins[c], n_samples)
end
-- run all stages, in-place on the output buffer