NO-OP: remove trailing whitespace

This commit is contained in:
Robin Gareus 2020-04-16 16:53:48 +02:00
parent bb62f7eaec
commit 87626e0bdd
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -301,7 +301,7 @@ function factory () return function ()
local id = proc:to_stateful():id():to_s()
local plug = proc:to_insert ():plugin (0)
local ptype = proc:to_insert():plugin(0):get_info().type
local n = 0
for j = 0, plug:parameter_count() - 1 do -- Iterate over all plugin parameters
if plug:parameter_is_control(j) then
@ -314,15 +314,15 @@ function factory () return function ()
if val < pd.lower then
val = pd.lower
end
if val > pd.upper then
val = pd.upper
end
print(r:name(), "->", proc:display_name(), "(#".. n ..")", label, val)
params[n] = val
end
n = n + 1
n = n + 1
end
end
i = i + 1