1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-24 01:33:47 +08:00

Fix nullref

This commit is contained in:
smoogipoo
2018-08-23 15:21:36 +09:00
Unverified
parent c7db407832
commit 90ebabd2db
+2 -1
View File
@@ -57,7 +57,8 @@ namespace osu.Game.Skinning
{
base.Dispose(isDisposing);
skin.SourceChanged -= onChange;
if (skin != null)
skin.SourceChanged -= onChange;
}
}
}