1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 07:42:57 +08:00

Fix beatmap background fade not being updated on retry

Fixes #2287
This commit is contained in:
smoogipoo 2018-03-23 20:41:38 +09:00
parent 342341d60f
commit afdab7895a

View File

@ -46,6 +46,12 @@ namespace osu.Game.Screens.Play
UpdateBackgroundElements();
}
protected override void OnResuming(Screen last)
{
base.OnResuming(last);
UpdateBackgroundElements();
}
protected virtual void UpdateBackgroundElements()
{
if (!IsCurrentScreen) return;