From 962be29beaed63de9002e9d4cc92964aebd68f07 Mon Sep 17 00:00:00 2001 From: XeonSquared Date: Wed, 2 Aug 2017 00:22:35 +1000 Subject: [PATCH] right, can't capture escape x_x --- sebios.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sebios.lua b/sebios.lua index 051ff71..4b368aa 100644 --- a/sebios.lua +++ b/sebios.lua @@ -82,7 +82,7 @@ do if t == "key_down" and c > 47 and c < 58 then computer.setBootAddress(bootdevs[c-47]) wl("Boot device set to "..bootdevs[c-47]) - elseif t == "key_down" and c == 27 then + elseif t == "key_down" and c == 32 then timer = timer + 10 end end