mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03:00
Fix missing parentheses
This commit is contained in:
committed by
Misa Elizabeth Kai
parent
aa8e731eb9
commit
254c46b846
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user