mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Update scripts to use == operator
This commit is contained in:
parent
a2094b6831
commit
d98eca6811
7 changed files with 7 additions and 7 deletions
|
|
@ -11,7 +11,7 @@ end
|
|||
function dsp_run (ins, outs, n_samples)
|
||||
for c = 1, #outs do -- for each output channel (count from 1 to number of output channels)
|
||||
|
||||
if not ins[c]:sameinstance (outs[c]) then -- if processing is not in-place..
|
||||
if ins[c] ~= outs[c] then -- if processing is not in-place..
|
||||
ARDOUR.DSP.copy_vector (outs[c], ins[c], n_samples) -- ..copy data from input to output.
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue