mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 08:22:56 +08:00
Merge pull request #1572 from peppy/fix-nullref-on-dispose
Fix nullref on disposing BeatmapSetOverlay before load
This commit is contained in:
commit
ccb531e6b6
@ -232,7 +232,7 @@ namespace osu.Game.Overlays.BeatmapSet
|
||||
protected override void Dispose(bool isDisposing)
|
||||
{
|
||||
base.Dispose(isDisposing);
|
||||
beatmaps.BeatmapSetAdded -= handleBeatmapAdd;
|
||||
if (beatmaps != null) beatmaps.BeatmapSetAdded -= handleBeatmapAdd;
|
||||
}
|
||||
|
||||
private void handleBeatmapAdd(BeatmapSetInfo beatmap)
|
||||
|
Loading…
Reference in New Issue
Block a user