1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 23:10:50 +08:00

Fix missing disposal

This commit is contained in:
Bartłomiej Dach
2025-12-31 13:02:03 +01:00
Unverified
parent 28a6d6211c
commit affe295f50
2 changed files with 2 additions and 0 deletions
@@ -141,6 +141,7 @@ namespace osu.Game.Screens.Edit
{
if (Skin.BeatmapSetResources != null)
Skin.BeatmapSetResources.CacheInvalidated -= InvokeSkinChanged;
Skin.Dispose();
}
#region Delegated ISkin implementation
+1
View File
@@ -342,6 +342,7 @@ namespace osu.Game.Skinning
Textures?.Dispose();
Samples?.Dispose();
FallbackStore?.Dispose();
store.Dispose();
}