Fix ruleset skins incorrectly providing configuration defaults

This commit is contained in:
Dean Herbert
2019-08-31 12:33:29 +09:00
parent 49fb21ffa9
commit 12eeec36fc
4 changed files with 36 additions and 11 deletions

View File

@ -34,7 +34,7 @@ namespace osu.Game.Skinning
using (StreamReader reader = new StreamReader(stream))
Configuration = new LegacySkinDecoder().Decode(reader);
else
Configuration = new SkinConfiguration();
Configuration = new DefaultSkinConfiguration();
Samples = audioManager.GetSampleStore(storage);
Textures = new TextureStore(new TextureLoaderStore(storage));