mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
Fix default timing points being used if "track" is not running
This commit is contained in:
@ -100,7 +100,7 @@ namespace osu.Game.Graphics.Containers
|
||||
beatmap = Beatmap.Value.Beatmap;
|
||||
}
|
||||
|
||||
if (track != null && beatmap != null && track.IsRunning && track.Length > 0)
|
||||
if (track != null && beatmap != null && clock.IsRunning && track.Length > 0)
|
||||
{
|
||||
currentTrackTime = clock.CurrentTime + EarlyActivationMilliseconds;
|
||||
|
||||
|
Reference in New Issue
Block a user