1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 19:32:55 +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
parent e1236e07ad
commit 32e2cfb8ee

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")
{
}