mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-01-18 06:25:37 +00:00
SDLControllerInterface: Fix compilation on Ubuntu LTS
This commit is contained in:
parent
ad6e4cb6e4
commit
8190efa5dc
|
@ -122,7 +122,11 @@ bool SDLControllerInterface::OpenGameController(int index)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if SDL_VERSION_ATLEAST(2, 0, 9)
|
||||||
int player_index = SDL_GameControllerGetPlayerIndex(gcontroller);
|
int player_index = SDL_GameControllerGetPlayerIndex(gcontroller);
|
||||||
|
#else
|
||||||
|
int player_index = 0;
|
||||||
|
#endif
|
||||||
int joystick_id = SDL_JoystickInstanceID(joystick);
|
int joystick_id = SDL_JoystickInstanceID(joystick);
|
||||||
|
|
||||||
Log_InfoPrintf("Opened controller %d (instance id %d, player id %d): %s", index, joystick_id, player_index,
|
Log_InfoPrintf("Opened controller %d (instance id %d, player id %d): %s", index, joystick_id, player_index,
|
||||||
|
|
Loading…
Reference in a new issue