Move debug key to not conflict with screenshot on windows

This commit is contained in:
Juhani Krekelä 2019-06-29 15:55:33 +03:00
parent 23e75e57a8
commit 164c8cd778
1 changed files with 1 additions and 1 deletions

View File

@ -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