Merge text.love

This commit is contained in:
Kartik K. Agaram 2023-11-18 15:25:32 -08:00
commit f08a485f07
1 changed files with 2 additions and 1 deletions

View File

@ -368,6 +368,7 @@ local Keys_down = {}
-- can't run any tests after this
function App.disable_tests()
-- have LÖVE delegate all handlers to App if they exist
-- make sure to late-bind handlers like LÖVE's defaults do
for name in pairs(love.handlers) do
if App[name] then
-- love.keyboard.isDown doesn't work on Android, so emulate it using
@ -383,7 +384,7 @@ function App.disable_tests()
return App.keyreleased(key, scancode)
end
else
love.handlers[name] = App[name]
love.handlers[name] = function(...) App[name](...) end
end
end
end