Fix joystick instance id check

This commit is contained in:
Mathieu Eyraud 2023-01-02 10:18:42 +01:00 committed by Sam Lantinga
parent ea6f0ae683
commit fa5475ba9f
1 changed files with 1 additions and 1 deletions

View File

@ -277,7 +277,7 @@ static SDL_bool SDL_SetJoystickIDForPlayerIndex(int player_index, SDL_JoystickID
}
/* Move any existing joystick to another slot */
if (existing_instance >= 0) {
if (existing_instance > 0) {
SDL_SetJoystickIDForPlayerIndex(SDL_FindFreePlayerIndex(), existing_instance);
}
return SDL_TRUE;