From: Steinar H. Gunderson Date: Thu, 24 Dec 2015 22:29:58 +0000 (+0100) Subject: Do not compile the non-HQ fade chains, since we do not need them; speeds up startup... X-Git-Tag: 1.0.0~62 X-Git-Url: https://git.sesse.net/?p=nageru;a=commitdiff_plain;h=4306f4e919075eff62a42d318e899d5485139f9b Do not compile the non-HQ fade chains, since we do not need them; speeds up startup a lot. --- diff --git a/theme.lua b/theme.lua index 24e8d0f..ee72838 100644 --- a/theme.lua +++ b/theme.lua @@ -157,7 +157,7 @@ local fade_chains = make_cartesian_product({ {true, false}, -- input0_scale {"static", "live", "livedeint"}, -- input1_type {true, false}, -- input1_scale - {true, false} -- hq + {true} -- hq }, function(input0_type, input0_scale, input1_type, input1_scale, hq) local input0_live = (input0_type ~= "static") local input1_live = (input1_type ~= "static")