修复统计场景按键爆炸

This commit is contained in:
MrZ626
2021-10-01 20:33:53 +08:00
parent 74ad038f21
commit 444e39ce33

View File

@@ -56,7 +56,7 @@ scene.touchDown=scene.mouseDown
function scene.keyDown(key)
if key=="escape"then
SCN.back()
elseif love.keyboard.isDown("M")and love.keyboard.isDown("D")then
elseif love.keyboard.isDown("m")and love.keyboard.isDown("d")then
loadGame('sprintMD',true)
end
end