mirror of
https://github.com/ppy/osu.git
synced 2025-01-14 19:13:20 +08:00
Fix a few potential crashes
This commit is contained in:
parent
e2891ab1e9
commit
b3403c78da
@ -120,7 +120,11 @@ namespace osu.Game.Screens.Multi.Match
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
chat.Exit += this.Exit;
|
chat.Exit += () =>
|
||||||
|
{
|
||||||
|
if (this.IsCurrentScreen())
|
||||||
|
this.Exit();
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
[BackgroundDependencyLoader]
|
[BackgroundDependencyLoader]
|
||||||
|
@ -16,7 +16,7 @@ namespace osu.Game.Screens.Play
|
|||||||
{
|
{
|
||||||
protected override BackgroundScreen CreateBackground() => new BackgroundScreenBeatmap(Beatmap.Value);
|
protected override BackgroundScreen CreateBackground() => new BackgroundScreenBeatmap(Beatmap.Value);
|
||||||
|
|
||||||
protected new BackgroundScreenBeatmap Background => (BackgroundScreenBeatmap)base.Background;
|
protected new BackgroundScreenBeatmap Background => base.Background as BackgroundScreenBeatmap;
|
||||||
|
|
||||||
public override bool AllowBeatmapRulesetChange => false;
|
public override bool AllowBeatmapRulesetChange => false;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user