src: fix a wrong mention of mousemoved

This commit is contained in:
Kazhnuz 2019-03-10 13:27:27 +01:00
parent b3bbde1232
commit 1751b5e886

View file

@ -49,5 +49,5 @@ function love.mousemoved(x, y, dx, dy)
end
function love.mousepressed( x, y, button, istouch )
core:mousemoved(x, y, button, istouch)
core:mousepressed(x, y, button, istouch)
end