SDLControllerInterface: Fix compilation on Ubuntu LTS

This commit is contained in:
Connor McLaughlin 2020-03-22 12:27:58 +10:00
parent ad6e4cb6e4
commit 8190efa5dc

View file

@ -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,