summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolaus Gullotta <nikolaus.gullotta@gmail.com>2018-03-20 15:41:20 -0500
committerNikolaus Gullotta <nikolaus.gullotta@gmail.com>2018-03-20 15:41:20 -0500
commitcbb039b9f65a8b179c34f8b930a3cb0ea31cd24e (patch)
treed9cf812dd1323765a6abd63a46d22f625bc6a730
parentf1dc39bb820faa32949b968d9051eb8a37dee377 (diff)
more stability fixes
-rw-r--r--scripts/_store_recall_mixer.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/_store_recall_mixer.lua b/scripts/_store_recall_mixer.lua
index e3e9d282ed..a8f79d129f 100644
--- a/scripts/_store_recall_mixer.lua
+++ b/scripts/_store_recall_mixer.lua
@@ -69,8 +69,8 @@ function factory() return function()
local on = 0
for p in order:iter() do
local pid = p:to_stateful():id():to_s()
- proc_order_str = proc_order_str .. "[" .. on .. "] = " .. pid ..","
if not(string.find(p:display_name(), "latcomp")) then
+ proc_order_str = proc_order_str .. "[" .. on .. "] = " .. pid ..","
cache_str = cache_str .. "[" .. pid .. "] = " .. "\"" .. p:display_name() .. "\"" ..","
end
on = on + 1