From 54b7e8e78eb4c770c3d521d464d6398396578dda Mon Sep 17 00:00:00 2001 From: SinnamonLat Date: Fri, 20 May 2022 14:39:26 +0200 Subject: [PATCH] Disable p1 exclusive keyboard fallback when there are other local players --- src/g_game.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/g_game.c b/src/g_game.c index f902919dd..950440fca 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -705,7 +705,8 @@ retrygetcontrol: } // If you're on controller, try your keyboard-based binds as an immediate backup. - if (p == 0 && deviceID > 0 && !tryingotherID) + // Do not do this if there are more than 1 local player. + if (p == 0 && deviceID > 0 && !tryingotherID && menuPlayers < 2 && !splitscreen) { deviceID = 0; goto retrygetcontrol;