From 7db43038ac0a7e07561d6eafd76e1c7fbbb949de Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Mon, 7 May 2018 16:27:51 +0200 Subject: [PATCH] adjust range of timed inputs to stdev of roughly 1 --- main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.lua b/main.lua index 90f1fdb..c64551c 100644 --- a/main.lua +++ b/main.lua @@ -943,7 +943,7 @@ local function doit(dummy) if cfg.time_inputs then for i=2,5 do - local v = band(trial_frames, lshift(1, i)) == 0 and -256 or 256 + local v = band(trial_frames, lshift(1, i)) == 0 and -181 or 181 insert(extra_input, v) end end