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)
{
stars[i].x += 340;
stars[i].y = (int) fRandom() * 240;
stars[i].y = (int) (fRandom() * 240);
starsspeed[i] = 4 + (int) (fRandom() * 4);
}
}