From 624ea79f6d1b005aa8d81f6be43d6458df5aaaa3 Mon Sep 17 00:00:00 2001 From: ChenX Date: Fri, 20 Oct 2023 23:49:10 +0800 Subject: [PATCH] fix:xinput disconnect lost gamepad --- input/drivers_joypad/xinput_hybrid_joypad.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/input/drivers_joypad/xinput_hybrid_joypad.c b/input/drivers_joypad/xinput_hybrid_joypad.c index cb57417f6aa5..988c3ee84f97 100644 --- a/input/drivers_joypad/xinput_hybrid_joypad.c +++ b/input/drivers_joypad/xinput_hybrid_joypad.c @@ -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