mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 06:36:31 +09:00
Fix checking for expand incorrectly
This commit is contained in:
@ -126,7 +126,7 @@ namespace osu.Game.Rulesets.Osu.Skinning
|
||||
break;
|
||||
|
||||
case OsuSkinConfiguration.ExpandNumberPiece:
|
||||
bool expand = source.GetConfig<LegacySetting, decimal>(LegacySetting.Version)?.Value < 2.0m;
|
||||
bool expand = !(source.GetConfig<LegacySetting, decimal>(LegacySetting.Version)?.Value >= 2.0m);
|
||||
return SkinUtils.As<TValue>(new BindableBool(expand));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user