From a6d48f0ef40d4e416d0f58215cd697c9ab435936 Mon Sep 17 00:00:00 2001 From: toaster Date: Sun, 18 Nov 2018 20:05:02 +0000 Subject: [PATCH] Fix the player in 16th not being visible in rankings --- src/hu_stuff.c | 2 +- src/k_kart.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hu_stuff.c b/src/hu_stuff.c index 58d418dd..88027c66 100644 --- a/src/hu_stuff.c +++ b/src/hu_stuff.c @@ -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) diff --git a/src/k_kart.c b/src/k_kart.c index df88b437..26283b0f 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -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)