mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-09-26 21:18:30 +00:00
SDL_FindFreePlayerIndex() will always return the next available player index
Fixes https://github.com/libsdl-org/SDL/issues/7868
This commit is contained in:
@@ -218,10 +218,10 @@ static int SDL_FindFreePlayerIndex(void)
|
|||||||
|
|
||||||
for (player_index = 0; player_index < SDL_joystick_player_count; ++player_index) {
|
for (player_index = 0; player_index < SDL_joystick_player_count; ++player_index) {
|
||||||
if (SDL_joystick_players[player_index] == 0) {
|
if (SDL_joystick_players[player_index] == 0) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
return player_index;
|
return player_index;
|
||||||
}
|
|
||||||
}
|
|
||||||
return -1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static int SDL_GetPlayerIndexForJoystickID(SDL_JoystickID instance_id)
|
static int SDL_GetPlayerIndexForJoystickID(SDL_JoystickID instance_id)
|
||||||
|
Reference in New Issue
Block a user