mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 06:07:11 +09:00
code fixes
This commit is contained in:
@ -140,7 +140,7 @@ namespace osu.Game.Screens.Play
|
||||
return;
|
||||
|
||||
double currentTime = (AudioClock?.CurrentTime ?? Time.Current) - firstHitTime;
|
||||
double progress = currentTime / (lastHitTime-firstHitTime);
|
||||
double progress = currentTime / (lastHitTime - firstHitTime);
|
||||
|
||||
bar.UpdatePosition((float)progress);
|
||||
graph.Progress = (int)(graph.ColumnCount * progress);
|
||||
|
Reference in New Issue
Block a user