diff --git a/osu.Game/Overlays/Options/Audio/VolumeOptions.cs b/osu.Game/Overlays/Options/Audio/VolumeOptions.cs index e8ec4b7e86..c8dac502f3 100644 --- a/osu.Game/Overlays/Options/Audio/VolumeOptions.cs +++ b/osu.Game/Overlays/Options/Audio/VolumeOptions.cs @@ -16,7 +16,7 @@ public class VolumeOptions : OptionsSubsection public VolumeOptions() { } - + [BackgroundDependencyLoader] private void load(OsuConfigManager config) { @@ -25,7 +25,7 @@ private void load(OsuConfigManager config) new SpriteText { Text = "Master: TODO slider" }, new SpriteText { Text = "Music: TODO slider" }, new SpriteText { Text = "Effect: TODO slider" }, - new CheckBoxOption + ignoreHitsounds = new CheckBoxOption { LabelText = "Ignore beatmap hitsounds", Bindable = config.GetBindable(OsuConfig.IgnoreBeatmapSamples) @@ -33,4 +33,4 @@ private void load(OsuConfigManager config) }; } } -} \ No newline at end of file +} diff --git a/osu.Game/Overlays/Options/Input/MouseOptions.cs b/osu.Game/Overlays/Options/Input/MouseOptions.cs index 316354fd4a..c2887fe4c0 100644 --- a/osu.Game/Overlays/Options/Input/MouseOptions.cs +++ b/osu.Game/Overlays/Options/Input/MouseOptions.cs @@ -23,28 +23,28 @@ private void load(OsuConfigManager config) Children = new Drawable[] { new SpriteText { Text = "Sensitivity: TODO slider" }, - new CheckBoxOption + rawInput = new CheckBoxOption { LabelText = "Raw input", Bindable = config.GetBindable(OsuConfig.RawInput) }, - new CheckBoxOption + mapRawInput = new CheckBoxOption { LabelText = "Map absolute raw input to the osu! window", Bindable = config.GetBindable(OsuConfig.AbsoluteToOsuWindow) }, new SpriteText { Text = "Confine mouse cursor: TODO dropdown" }, - new CheckBoxOption + disableWheel = new CheckBoxOption { LabelText = "Disable mouse wheel in play mode", Bindable = config.GetBindable(OsuConfig.MouseDisableWheel) }, - new CheckBoxOption + disableButtons = new CheckBoxOption { LabelText = "Disable mouse buttons in play mode", Bindable = config.GetBindable(OsuConfig.MouseDisableButtons) }, - new CheckBoxOption + enableRipples = new CheckBoxOption { LabelText = "Cursor ripples", Bindable = config.GetBindable(OsuConfig.CursorRipple) @@ -52,4 +52,4 @@ private void load(OsuConfigManager config) }; } } -} \ No newline at end of file +}