Fix ghost rankings issue

This commit is contained in:
TehRealSalt 2018-11-02 01:19:25 -04:00
parent 89276b739f
commit 6fd0f3f0ba
1 changed files with 4 additions and 0 deletions

View File

@ -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;