mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 12:33:01 +08:00
Fix regressed logic for applying classic defaults
This commit is contained in:
parent
b41e273086
commit
71aa7c813e
@ -141,7 +141,10 @@ namespace osu.Game.Overlays.Settings
|
||||
|
||||
public void ApplyClassicDefault(bool useClassicDefault)
|
||||
{
|
||||
if (hasClassicDefault && useClassicDefault)
|
||||
if (!hasClassicDefault)
|
||||
return;
|
||||
|
||||
if (useClassicDefault)
|
||||
Current.Value = classicDefault;
|
||||
else
|
||||
Current.SetDefault();
|
||||
|
Loading…
Reference in New Issue
Block a user