Invert logic to match existing toggles

This commit is contained in:
Dean Herbert
2018-04-25 16:15:23 +09:00
parent c517b73375
commit 4f53185d43
3 changed files with 23 additions and 22 deletions

View File

@ -15,8 +15,6 @@ namespace osu.Game.Configuration
// UI/selection defaults
Set(OsuSetting.Ruleset, 0, 0, int.MaxValue);
Set(OsuSetting.Skin, 0, 0, int.MaxValue);
Set(OsuSetting.IgnoreBeatmapSkin, false);
Set(OsuSetting.IgnoreBeatmapHitsounds, false);
Set(OsuSetting.BeatmapDetailTab, BeatmapDetailTab.Details);
@ -62,6 +60,9 @@ namespace osu.Game.Configuration
Set(OsuSetting.ShowFpsDisplay, false);
Set(OsuSetting.ShowStoryboard, true);
Set(OsuSetting.BeatmapSkins, true);
Set(OsuSetting.BeatmapHitsounds, true);
Set(OsuSetting.CursorRotation, true);
Set(OsuSetting.MenuParallax, true);
@ -136,7 +137,7 @@ namespace osu.Game.Configuration
ScreenshotFormat,
ScreenshotCaptureMenuCursor,
SongSelectRightMouseScroll,
IgnoreBeatmapSkin,
IgnoreBeatmapHitsounds
BeatmapSkins,
BeatmapHitsounds
}
}