mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Don't do anything if you somehow have a negative follower in menus
This commit is contained in:
parent
fbd10d0e6c
commit
9fec0562c9
1 changed files with 1 additions and 1 deletions
|
|
@ -9638,7 +9638,7 @@ static void M_DrawSetupMultiPlayerMenu(void)
|
|||
static void M_GetFollowerState(void)
|
||||
{
|
||||
|
||||
if (setupm_fakefollower == -1 || setupm_fakefollower > numfollowers-1) // yikes, there's none!
|
||||
if (setupm_fakefollower <= -1 || setupm_fakefollower > numfollowers-1) // yikes, there's none!
|
||||
return;
|
||||
// ^ we don't actually need to set anything since it won't be displayed anyway.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue