1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-15 13:22:57 +08:00

Move track assignment below

This commit is contained in:
Salman Ahmed 2022-09-08 00:25:55 +03:00
parent 6a03b4e0de
commit 50923b6e5b

View File

@ -68,10 +68,11 @@ namespace osu.Game.Screens.Play
public MasterGameplayClockContainer(WorkingBeatmap beatmap, double skipTargetTime)
: base(beatmap.Track, true)
{
track = beatmap.Track;
this.beatmap = beatmap;
this.skipTargetTime = skipTargetTime;
track = beatmap.Track;
StartTime = findEarliestStartTime();
}