Merge branch 'show16playersinrankings' into 'master'

Fix the player in 16th not being visible in rankings

See merge request KartKrew/Kart!103
This commit is contained in:
Sal 2018-11-18 16:02:32 -05:00
commit b47d10645a
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)