Weld -> BindWith.

This commit is contained in:
Dean Herbert
2017-02-27 12:24:50 +09:00
parent bc231c6bd4
commit 47997c20ad
31 changed files with 94 additions and 93 deletions

View File

@ -20,12 +20,12 @@ namespace osu.Game.Overlays.Options.Sections.Input
new OsuCheckbox
{
LabelText = "OS TabletPC support",
Bindable = config.GetWeldedBindable<bool>(OsuConfig.Tablet)
Bindable = config.GetBindable<bool>(OsuConfig.Tablet)
},
new OsuCheckbox
{
LabelText = "Wiimote/TaTaCon Drum Support",
Bindable = config.GetWeldedBindable<bool>(OsuConfig.Wiimote)
Bindable = config.GetBindable<bool>(OsuConfig.Wiimote)
},
};
}