mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-08 18:09:45 +01:00
Fix missing parentheses
This commit is contained in:
parent
aa8e731eb9
commit
254c46b846
1 changed files with 1 additions and 1 deletions
|
@ -2626,7 +2626,7 @@ void Graphics::updatebackground(int t)
|
||||||
if (stars[i].x < -10)
|
if (stars[i].x < -10)
|
||||||
{
|
{
|
||||||
stars[i].x += 340;
|
stars[i].x += 340;
|
||||||
stars[i].y = (int) fRandom() * 240;
|
stars[i].y = (int) (fRandom() * 240);
|
||||||
starsspeed[i] = 4 + (int) (fRandom() * 4);
|
starsspeed[i] = 4 + (int) (fRandom() * 4);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue