1
0
Fork 0
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:
AllyTally 2023-06-06 10:23:37 -03:00 committed by Misa Elizabeth Kai
parent aa8e731eb9
commit 254c46b846

View file

@ -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);
} }
} }