From 164c8cd778b071c1ed5ea950b394c2cb66faee3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Sat, 29 Jun 2019 15:55:33 +0300 Subject: [PATCH] Move debug key to not conflict with screenshot on windows --- bundle/main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/main.lua b/bundle/main.lua index 9a1a407..643f24f 100644 --- a/bundle/main.lua +++ b/bundle/main.lua @@ -765,7 +765,7 @@ function love.keypressed(key) newGame() elseif direction_keys[key] ~= nil then step(direction_keys[key]) - elseif key == 'printscreen' then + elseif key == 'pause' then debug = not debug end end