Fix int truncation.

This commit is contained in:
Dean Herbert 2017-03-07 11:29:55 +09:00 committed by GitHub
parent fc6bd386ea
commit 12c316aba4

View File

@ -123,7 +123,7 @@ namespace osu.Game.Modes
public Vector2 Size => new Vector2(512, 384);
private const double sixty_frame_time = 1000 / 60;
private const double sixty_frame_time = 1000.0 / 60;
double currentTime;
int currentDirection;