1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-18 03:47:04 +08:00

Leave realm resource store construction to base class

This commit is contained in:
Dean Herbert
2022-03-23 13:38:32 +09:00
Unverified
parent e1236e07ad
commit 32e2cfb8ee
+1 -1
View File
@@ -45,7 +45,7 @@ namespace osu.Game.Skinning
[UsedImplicitly(ImplicitUseKindFlags.InstantiatedWithFixedConstructorSignature)]
public LegacySkin(SkinInfo skin, IStorageResourceProvider resources)
: this(skin, new RealmBackedResourceStore(skin, resources.Files), resources, "skin.ini")
: this(skin, null, resources, "skin.ini")
{
}