Updated Home (markdown)

Kevin Harrison 2019-01-03 13:18:12 -05:00
parent 583922a615
commit 37bcd0f8e1

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