mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 16:24:57 +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
|
|
@ -66,7 +66,7 @@ function dsp_run (ins, outs, n_samples)
|
|||
for c = 1,#ins do -- process all channels
|
||||
-- check if output and input buffers for this channel are identical
|
||||
-- http://manual.ardour.org/lua-scripting/class_reference/#C:FloatArray
|
||||
if not ins[c]:sameinstance (outs[c]) then
|
||||
if ins[c] ~= outs[c] then
|
||||
-- http://manual.ardour.org/lua-scripting/class_reference/#ARDOUR:DSP
|
||||
ARDOUR.DSP.copy_vector (outs[c]:offset (off), ins[c]:offset (off), siz)
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue