Make debug toggleable back off

This commit is contained in:
Juhani Krekelä 2019-06-29 15:54:56 +03:00
parent 97431250a6
commit 23e75e57a8
1 changed files with 1 additions and 1 deletions

View File

@ -766,7 +766,7 @@ function love.keypressed(key)
elseif direction_keys[key] ~= nil then
step(direction_keys[key])
elseif key == 'printscreen' then
debug = true
debug = not debug
end
end
end