mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 20:41:46 +00:00
wrong var fix
This commit is contained in:
parent
a7ad98c64c
commit
53e017f649
1 changed files with 2 additions and 2 deletions
|
|
@ -6550,8 +6550,8 @@ static boolean K_drawKartPositionFaces(void)
|
||||||
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)
|
if (i < 0)
|
||||||
ranklines = 0;
|
i = 0;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue