THIS PAGE IS A WORK IN PROGRESS ... Please make edits to this page to improve it!
Check if the given joystick is supported by the game controller interface.
int joystick_index); SDL_bool SDL_IsGameController(
joystick_index |
the device_index of a device, up to SDL_NumJoysticks() |
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.
joystick_index
is the same as the device_index
passed to SDL_JoystickOpen().
This function is available since SDL 2.0.0.
for (int i = 0; i < SDL_NumJoysticks(); ++i) {
if (SDL_IsGameController(i)) {
"Joystick %i is supported by the game controller interface!\n", i);
printf(
} }
CategoryAPI, CategoryGameController, CategoryDraft