1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-15 14:53:01 +08:00

fixed typo

This commit is contained in:
Jorolf 2017-03-18 15:22:03 +01:00 committed by GitHub
parent 8568e1536c
commit 80de15d935

View File

@ -61,12 +61,12 @@ namespace osu.Game.Overlays.Options.Sections
}, },
new OptionSlider<double> new OptionSlider<double>
{ {
LabelText = "Menu Cursor size", LabelText = "Menu cursor size",
Bindable = (BindableDouble)config.GetBindable<double>(OsuConfig.CursorSize) Bindable = (BindableDouble)config.GetBindable<double>(OsuConfig.CursorSize)
}, },
new OptionSlider<double> new OptionSlider<double>
{ {
LabelText = "Gameplay Cursor size", LabelText = "Gameplay cursor size",
Bindable = (BindableDouble)config.GetBindable<double>(OsuConfig.GameplayCursorSize) Bindable = (BindableDouble)config.GetBindable<double>(OsuConfig.GameplayCursorSize)
}, },
new OsuCheckbox new OsuCheckbox
@ -77,4 +77,4 @@ namespace osu.Game.Overlays.Options.Sections
}; };
} }
} }
} }