Fix two implementation oversights

This commit is contained in:
Dean Herbert
2022-12-02 16:05:14 +09:00
parent d8dd7e7e0f
commit 809d02cda0
2 changed files with 6 additions and 4 deletions

View File

@ -114,7 +114,7 @@ namespace osu.Game.Rulesets.UI.Scrolling
break;
}
double lastObjectTime = Beatmap.HitObjects.Any() ? Beatmap.GetLastObjectTime() : 0;
double lastObjectTime = Beatmap.HitObjects.Any() ? Beatmap.GetLastObjectTime() : double.MaxValue;
double baseBeatLength = TimingControlPoint.DEFAULT_BEAT_LENGTH;
if (RelativeScaleBeatLengths)