mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +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?
|
||||
{
|
||||
i = ranklines - 5;
|
||||
if (ranklines < 0)
|
||||
ranklines = 0;
|
||||
if (i < 0)
|
||||
i = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue