Fix the player in 16th not being visible in rankings

This commit is contained in:
toaster 2018-11-18 20:05:02 +00:00
parent c5a6460e18
commit a6d48f0ef4
2 changed files with 2 additions and 2 deletions

View file

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

View file

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