Fix skinnable test scene still not working with dynamic compilation

This commit is contained in:
Dean Herbert 2020-10-16 16:17:36 +09:00
parent 6d3a106a86
commit bdebf2f1a4
1 changed files with 2 additions and 2 deletions

View File

@ -35,12 +35,12 @@ protected SkinnableTestScene()
}
[BackgroundDependencyLoader]
private void load(AudioManager audio, SkinManager skinManager)
private void load(AudioManager audio, SkinManager skinManager, OsuGameBase game)
{
var dllStore = new DllResourceStore(DynamicCompilationOriginal.GetType().Assembly);
metricsSkin = new TestLegacySkin(new SkinInfo { Name = "metrics-skin" }, new NamespacedResourceStore<byte[]>(dllStore, "Resources/metrics_skin"), audio, true);
defaultSkin = skinManager.GetSkin(DefaultLegacySkin.Info);
defaultSkin = new DefaultLegacySkin(new NamespacedResourceStore<byte[]>(game.Resources, "Skins/Legacy"), audio);
specialSkin = new TestLegacySkin(new SkinInfo { Name = "special-skin" }, new NamespacedResourceStore<byte[]>(dllStore, "Resources/special_skin"), audio, true);
oldSkin = new TestLegacySkin(new SkinInfo { Name = "old-skin" }, new NamespacedResourceStore<byte[]>(dllStore, "Resources/old_skin"), audio, true);
}