Change parameter order of LegacySkin to put IStorageResourceProvider first

The optional resource store should not be before the (basically)
required resource provider.
This commit is contained in:
Dean Herbert
2022-03-23 15:02:01 +09:00
parent d0ea1739b4
commit 7a1909bf97
8 changed files with 10 additions and 10 deletions

View File

@ -187,7 +187,7 @@ namespace osu.Game.Tests.Visual
private readonly bool extrapolateAnimations;
public TestLegacySkin(SkinInfo skin, IResourceStore<byte[]> storage, IStorageResourceProvider resources, bool extrapolateAnimations)
: base(skin, storage, resources, "skin.ini")
: base(skin, resources, storage, "skin.ini")
{
this.extrapolateAnimations = extrapolateAnimations;
}