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

Add missing ToArray() call

This commit is contained in:
Dean Herbert
2021-07-07 14:08:29 +09:00
Unverified
parent ca791c2afa
commit c18b8ca86c
+1 -1
View File
@@ -197,7 +197,7 @@ namespace osu.Game.Skinning
/// </summary>
protected void ResetSources()
{
foreach (var i in skinSources)
foreach (var i in skinSources.ToArray())
RemoveSource(i.skin);
}