1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-19 13:07:20 +08:00

Merge branch 'master' into mania-hit-explosions

This commit is contained in:
Dean Herbert 2017-09-11 18:32:36 +09:00 committed by GitHub
commit ba4b9e3411

View File

@ -87,7 +87,9 @@ namespace osu.Game.Beatmaps
{
if (track != null) return track;
track = GetTrack();
// we want to ensure that we always have a track, even if it's a fake one.
track = GetTrack() ?? new TrackVirtual();
applyRateAdjustments();
return track;
}