mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix number of players counter breaking when entering as player 1 & then exiting
This commit is contained in:
parent
b1d36496b2
commit
3890c06a4d
1 changed files with 3 additions and 2 deletions
|
|
@ -2270,12 +2270,13 @@ boolean M_CharacterSelectHandler(INT32 choice)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Setup new numplayers
|
// Setup new numplayers
|
||||||
|
setup_numplayers = 0;
|
||||||
for (i = 0; i < MAXSPLITSCREENPLAYERS; i++)
|
for (i = 0; i < MAXSPLITSCREENPLAYERS; i++)
|
||||||
{
|
{
|
||||||
if (setup_player[i].mdepth == CSSTEP_NONE)
|
if (setup_player[i].mdepth == CSSTEP_NONE)
|
||||||
break;
|
break;
|
||||||
else
|
|
||||||
setup_numplayers = i+1;
|
setup_numplayers = i+1;
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue