mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Disable p1 exclusive keyboard fallback when there are other local players
This commit is contained in:
parent
926b210108
commit
54b7e8e78e
1 changed files with 2 additions and 1 deletions
|
|
@ -705,7 +705,8 @@ retrygetcontrol:
|
||||||
}
|
}
|
||||||
|
|
||||||
// If you're on controller, try your keyboard-based binds as an immediate backup.
|
// 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;
|
deviceID = 0;
|
||||||
goto retrygetcontrol;
|
goto retrygetcontrol;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue