Disable p1 exclusive keyboard fallback when there are other local players

This commit is contained in:
SinnamonLat 2022-05-20 14:39:26 +02:00
parent 926b210108
commit 54b7e8e78e

View file

@ -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;