Revert left-over type change in SkinConfiguration

This commit is contained in:
Craftplacer 2020-08-31 17:34:18 +02:00
parent a893aa8af8
commit a290f7eeec

View File

@ -47,6 +47,6 @@ namespace osu.Game.Skinning
public Dictionary<string, Color4> CustomColours { get; set; } = new Dictionary<string, Color4>();
public readonly SortedDictionary<string, string> ConfigDictionary = new SortedDictionary<string, string>();
public readonly Dictionary<string, string> ConfigDictionary = new Dictionary<string, string>();
}
}