mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 04:21:47 +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;
|
ranklines = 5;
|
||||||
}
|
}
|
||||||
else if (strank+3 > ranklines) // too close to the bottom?
|
else if (strank+3 > ranklines) // too close to the bottom?
|
||||||
|
{
|
||||||
i = ranklines - 5;
|
i = ranklines - 5;
|
||||||
|
if (ranklines < 0)
|
||||||
|
ranklines = 0;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
i = strank-2;
|
i = strank-2;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue