Skip to content

Commit

Permalink
fix:xinput disconnect lost gamepad
Browse files Browse the repository at this point in the history
  • Loading branch information
ChenX committed Oct 20, 2023
1 parent 7011d0c commit 624ea79
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions input/drivers_joypad/xinput_hybrid_joypad.c
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,11 @@ static BOOL CALLBACK enum_joypad_cb_hybrid(
if (g_joypad_cnt == MAX_USERS)
return DIENUM_STOP;

while(!g_xinput_states[g_last_xinput_pad_idx].connected && g_last_xinput_pad_idx < DEFAULT_MAX_PADS)
{
g_last_xinput_pad_idx++;
}

pad = &g_pads[g_joypad_cnt].joypad;

#ifdef __cplusplus
Expand Down

0 comments on commit 624ea79

Please sign in to comment.