mirror of
https://github.com/love2d/love.git
synced 2026-08-14 01:20:56 +02:00
Removed 'moved' suffix from new joystick callbacks
--HG-- branch : joystickevents
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user