Fix ghost rankings issue

This commit is contained in:
TehRealSalt 2018-11-02 01:19:25 -04:00
parent ed7e5cae14
commit 3af5af996d

View file

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