1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 20:07:29 +08:00

Move IsLoaded check to more correct place

This commit is contained in:
Dean Herbert 2019-08-08 10:41:23 +09:00
parent a2e3ab6463
commit 40a33b3382

View File

@ -40,7 +40,8 @@ namespace osu.Game.Screens.Play
isBreakTime.Value = false;
CurrentBreakIndex = 0;
initializeBreaks();
if (IsLoaded)
initializeBreaks();
}
}
@ -162,8 +163,6 @@ namespace osu.Game.Screens.Play
private void initializeBreaks()
{
if (!IsLoaded) return; // we need a clock.
FinishTransforms(true);
Scheduler.CancelDelayedTasks();