mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14: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
|
|
@ -41,7 +41,7 @@ function dsp_runmap (bufs, in_map, out_map, n_samples, offset)
|
|||
|
||||
local bi = bufs:get_audio(ib)
|
||||
local bo = bufs:get_audio(ob)
|
||||
assert (bi:sameinstance(bo))
|
||||
assert (bi == bo)
|
||||
|
||||
local a = bufs:get_audio(ib):data(offset):array() -- get a reference (pointer to array)
|
||||
for s = 1,n_samples do
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue