mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-29 20:50:38 +00:00
Fix ghost rankings issue
This commit is contained in:
parent
89276b739f
commit
6fd0f3f0ba
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…
Reference in a new issue