summaryrefslogtreecommitdiff
path: root/scripts/_notch_bank.lua
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/_notch_bank.lua')
-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 619541823d..cd1f71bdc6 100644
--- a/scripts/_notch_bank.lua
+++ b/scripts/_notch_bank.lua
@@ -109,7 +109,7 @@ function dsp_run (ins, outs, n_samples)
-- process all channels
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
+ if ins[c] ~= outs[c] then
ARDOUR.DSP.copy_vector (outs[c], ins[c], n_samples)
end