mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 21:02:54 +08:00
Remove default combo colours usage from skins
This commit is contained in:
parent
10c7fc139e
commit
281671a213
@ -39,7 +39,7 @@ namespace osu.Game.Skinning
|
||||
using (LineBufferedReader reader = new LineBufferedReader(stream))
|
||||
Configuration = new LegacySkinDecoder().Decode(reader);
|
||||
else
|
||||
Configuration = new DefaultSkinConfiguration();
|
||||
Configuration = new SkinConfiguration();
|
||||
|
||||
if (storage != null)
|
||||
{
|
||||
|
@ -5,14 +5,14 @@ using osu.Game.Beatmaps.Formats;
|
||||
|
||||
namespace osu.Game.Skinning
|
||||
{
|
||||
public class LegacySkinDecoder : LegacyDecoder<DefaultSkinConfiguration>
|
||||
public class LegacySkinDecoder : LegacyDecoder<SkinConfiguration>
|
||||
{
|
||||
public LegacySkinDecoder()
|
||||
: base(1)
|
||||
{
|
||||
}
|
||||
|
||||
protected override void ParseLine(DefaultSkinConfiguration skin, Section section, string line)
|
||||
protected override void ParseLine(SkinConfiguration skin, Section section, string line)
|
||||
{
|
||||
if (section != Section.Colours)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user