mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 14:53:01 +08:00
Merge pull request #1238 from peppy/fix-autoplay
Fix regression causing autoplay to fail
This commit is contained in:
commit
a9ad02c29f
@ -77,13 +77,6 @@ namespace osu.Game.Rulesets.UI
|
|||||||
Ruleset = ruleset;
|
Ruleset = ruleset;
|
||||||
}
|
}
|
||||||
|
|
||||||
[BackgroundDependencyLoader]
|
|
||||||
private void load()
|
|
||||||
{
|
|
||||||
KeyBindingInputManager = CreateInputManager();
|
|
||||||
KeyBindingInputManager.RelativeSizeAxes = Axes.Both;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Checks whether all HitObjects have been judged, and invokes OnAllJudged.
|
/// Checks whether all HitObjects have been judged, and invokes OnAllJudged.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -194,6 +187,9 @@ namespace osu.Game.Rulesets.UI
|
|||||||
// Post-process the beatmap
|
// Post-process the beatmap
|
||||||
processor.PostProcess(Beatmap);
|
processor.PostProcess(Beatmap);
|
||||||
|
|
||||||
|
KeyBindingInputManager = CreateInputManager();
|
||||||
|
KeyBindingInputManager.RelativeSizeAxes = Axes.Both;
|
||||||
|
|
||||||
// Add mods, should always be the last thing applied to give full control to mods
|
// Add mods, should always be the last thing applied to give full control to mods
|
||||||
applyMods(Mods);
|
applyMods(Mods);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user