Better namings for the speed change "algorithms"

This commit is contained in:
smoogipoo
2018-01-12 17:18:34 +09:00
parent cae93a1d1f
commit 441e8aced5
8 changed files with 31 additions and 31 deletions

View File

@ -15,10 +15,10 @@ namespace osu.Game.Overlays.Settings.Sections.Gameplay
{
Children = new[]
{
new SettingsEnumDropdown<ScrollingAlgorithmType>
new SettingsEnumDropdown<SpeedChangeVisualisationMethod>
{
LabelText = "Scrolling algorithm",
Bindable = config.GetBindable<ScrollingAlgorithmType>(OsuSetting.ScrollingAlgorithm),
LabelText = "Visualise speed changes as",
Bindable = config.GetBindable<SpeedChangeVisualisationMethod>(OsuSetting.SpeedChangeVisualisation),
}
};
}