mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-21 17:41:48 +00:00
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:
commit
1a8ee7f9cc
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…
Add table
Reference in a new issue