mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-03-02 17:31:07 +00:00
Fix ghost rankings issue
This commit is contained in:
parent
ed7e5cae14
commit
3af5af996d
1 changed files with 4 additions and 0 deletions
|
|
@ -6548,7 +6548,11 @@ static boolean K_drawKartPositionFaces(void)
|
|||
ranklines = 5;
|
||||
}
|
||||
else if (strank+3 > ranklines) // too close to the bottom?
|
||||
{
|
||||
i = ranklines - 5;
|
||||
if (ranklines < 0)
|
||||
ranklines = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
i = strank-2;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue