1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:07:23 +08:00

Fix potential crash if disposing a DrawableStoryboardSample twice

This commit is contained in:
Dean Herbert 2020-08-21 18:19:47 +09:00
parent 25ee1fa7a2
commit 69cb9f3091

View File

@ -76,6 +76,8 @@ namespace osu.Game.Storyboards.Drawables
protected override void Dispose(bool isDisposing)
{
Channel?.Stop();
Channel = null;
base.Dispose(isDisposing);
}
}