Wiki Page Content

Revision 1 as of 2010-03-18 01:41:37

Clear message

DRAFT

SDL_JoystickGetBall

Use this function to get the ball axis change since the last poll.

Syntax

int SDL_JoystickGetBall(SDL_Joystick* joystick,
                        int           ball,
                        int*          dx,
                        int*          dy)

Function Parameters

joystick

a pointer to a structure containing joystick information ???

ball

the ball indices index; starts at index 0

dx

the difference in the x axis since the last poll

dy

the difference in the y axis since the last poll

Return Value

Returns 0 on success, or -1 if you passed it invalid parameters; call SDL_GetError() for more information.

Code Examples

You can add your code example here

Remarks

You can add useful comments here


CategoryAPI, CategoryJoystick

(Page Info.)
Feedback
Please include your contact information if you'd like to receive a reply.
Submit