1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-05 11:23:40 +08:00

Merge pull request #1511 from peppy/fix-select-no-beatmap

Fix hard crash when clicking play button with no map selected
This commit is contained in:
Dean Herbert
2017-11-16 00:38:41 +09:00
committed by GitHub
Unverified
+2
View File
@@ -231,6 +231,8 @@ namespace osu.Game.Screens.Play
private void applyRateFromMods()
{
if (adjustableSourceClock == null) return;
adjustableSourceClock.Rate = 1;
foreach (var mod in Beatmap.Value.Mods.Value.OfType<IApplicableToClock>())
mod.ApplyToClock(adjustableSourceClock);