diff --git a/Home.md b/Home.md index 73c4163..41bf657 100644 --- a/Home.md +++ b/Home.md @@ -48,14 +48,14 @@ function love.keyreleased(key, scancode) end end -function love.mousepressed(x, y, button, istouch) - if ui:mousepressed(x, y, button, istouch) then +function love.mousepressed(x, y, button, istouch, presses) + if ui:mousepressed(x, y, button, istouch, presses) then return -- event consumed end end -function love.mousereleased(x, y, button, istouch) - if ui:mousereleased(x, y, button, istouch) then +function love.mousereleased(x, y, button, istouch, presses) + if ui:mousereleased(x, y, button, istouch, presses) then return -- event consumed end end