1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 13:32:54 +08:00

Fix disposal of playing preview track not unmuting game track

This commit is contained in:
Salman Ahmed 2022-12-05 14:45:29 +03:00
parent 01ceaa08e8
commit a457a2fbbf

View File

@ -109,6 +109,8 @@ namespace osu.Game.Audio
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
Stop();
Track?.Dispose();
}
}