Wiki Page Content

Differences between revisions 3 and 4
Revision 3 as of 2013-02-13 18:21:38
Size: 1272
Editor: jorgenpt
Comment: Deleting comment
Revision 4 as of 2013-08-10 19:33:14
Size: 1275
Comment: Fixed output error in example.
Deletions are marked like this. Additions are marked like this.
Line 32: Line 32:
        printf("Joystick %i is supported by the game controller interface!\n");         printf("Joystick %i is supported by the game controller interface!\n", i);

DRAFT

SDL_IsGameController

Use this function to check if the given joystick is supported by the game controller interface.

Syntax

SDL_bool SDL_IsGameController(int joystick_index)

Function Parameters

joystick_index

the device_index of a device, up to SDL_NumJoysticks()

Return Value

Returns SDL_TRUE if the given joystick is supported by the game controller interface, SDL_FALSE if it isn't or it's an invalid index.

Code Examples

for (int i = 0; i < SDL_NumJoysticks(); ++i) {
    if (SDL_IsGameController(i)) {
        printf("Joystick %i is supported by the game controller interface!\n", i);
    }
}

Remarks

joystick_index is the same as the device_index passed to SDL_JoystickOpen.


CategoryAPI, CategoryGameController

None: SDL_IsGameController (last edited 2016-04-10 22:52:08 by PhilippWiesemann)

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