mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-05-08 21:36:41 +02: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…
Add table
Add a link
Reference in a new issue