mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-13 21:31:32 +00:00
Fix the player in 16th not being visible in rankings
This commit is contained in:
parent
c5a6460e18
commit
a6d48f0ef4
2 changed files with 2 additions and 2 deletions
|
@ -2660,7 +2660,7 @@ static void HU_DrawRankings(void)
|
|||
|
||||
for (j = 0; j < numplayersingame; j++)
|
||||
{
|
||||
UINT8 lowestposition = MAXPLAYERS;
|
||||
UINT8 lowestposition = MAXPLAYERS+1;
|
||||
for (i = 0; i < MAXPLAYERS; i++)
|
||||
{
|
||||
if (completed[i] || !playeringame[i] || players[i].spectator || !players[i].mo)
|
||||
|
|
|
@ -6561,7 +6561,7 @@ static boolean K_drawKartPositionFaces(void)
|
|||
|
||||
for (j = 0; j < numplayersingame; j++)
|
||||
{
|
||||
UINT8 lowestposition = MAXPLAYERS;
|
||||
UINT8 lowestposition = MAXPLAYERS+1;
|
||||
for (i = 0; i < MAXPLAYERS; i++)
|
||||
{
|
||||
if (completed[i] || !playeringame[i] || players[i].spectator || !players[i].mo)
|
||||
|
|
Loading…
Reference in a new issue