Removed 'moved' suffix from new joystick callbacks

--HG--
branch : joystickevents
This commit is contained in:
Alex Szpakowski
2013-03-05 12:31:11 -04:00
parent a844ac2389
commit 6b1222366d
3 changed files with 25 additions and 26 deletions
+6 -6
View File
@@ -173,14 +173,14 @@ function love.createhandlers()
joystickreleased = function (j,b)
if love.joystickreleased then love.joystickreleased(j,b) end
end,
joystickaxismoved = function (j,a,v)
if love.joystickaxismoved then love.joystickaxismoved(j,a,v) end
joystickaxis = function (j,a,v)
if love.joystickaxis then love.joystickaxis(j,a,v) end
end,
joystickballmoved = function (j,b,dx,dy)
if love.joystickballmoved then love.joystickballmoved(j,b,dx,dy) end
joystickball = function (j,b,dx,dy)
if love.joystickball then love.joystickball(j,b,dx,dy) end
end,
joystickhatmoved = function(j,h,v)
if love.joystickhatmoved then love.joystickhatmoved(j,h,v) end
joystickhat = function(j,h,v)
if love.joystickhat then love.joystickhat(j,h,v) end
end,
focus = function (f)
if love.focus then love.focus(f) end