1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-07 23:24:33 +08:00

Remove unnecessary update, document other usage

This commit is contained in:
Dan Balasescu
2025-02-14 20:38:44 +09:00
Unverified
parent 1cb4956cac
commit 9458f0d01d
@@ -684,7 +684,6 @@ namespace osu.Game.Screens.OnlinePlay.Playlists
public override void OnEntering(ScreenTransitionEvent e)
{
base.OnEntering(e);
updateGameplayState();
beginHandlingTrack();
}
@@ -697,8 +696,10 @@ namespace osu.Game.Screens.OnlinePlay.Playlists
public override void OnResuming(ScreenTransitionEvent e)
{
base.OnResuming(e);
updateGameplayState();
beginHandlingTrack();
// Required when resuming from style selection.
updateGameplayState();
}
public override bool OnExiting(ScreenExitEvent e)