mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-04-17 07:51:28 +00:00
wrong var fix
This commit is contained in:
parent
0154ef1d01
commit
8d5fb13111
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…
Reference in a new issue