mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
Weld -> BindWith.
This commit is contained in:
@ -23,22 +23,22 @@ namespace osu.Game.Overlays.Options.Sections.Graphics
|
||||
new OptionEnumDropDown<FrameSync>
|
||||
{
|
||||
LabelText = "Frame limiter",
|
||||
Bindable = config.GetWeldedBindable<FrameSync>(FrameworkConfig.FrameSync)
|
||||
Bindable = config.GetBindable<FrameSync>(FrameworkConfig.FrameSync)
|
||||
},
|
||||
new OsuCheckbox
|
||||
{
|
||||
LabelText = "Show FPS counter",
|
||||
Bindable = osuConfig.GetWeldedBindable<bool>(OsuConfig.FpsCounter),
|
||||
Bindable = osuConfig.GetBindable<bool>(OsuConfig.FpsCounter),
|
||||
},
|
||||
new OsuCheckbox
|
||||
{
|
||||
LabelText = "Reduce dropped frames",
|
||||
Bindable = osuConfig.GetWeldedBindable<bool>(OsuConfig.ForceFrameFlush),
|
||||
Bindable = osuConfig.GetBindable<bool>(OsuConfig.ForceFrameFlush),
|
||||
},
|
||||
new OsuCheckbox
|
||||
{
|
||||
LabelText = "Detect performance issues",
|
||||
Bindable = osuConfig.GetWeldedBindable<bool>(OsuConfig.DetectPerformanceIssues),
|
||||
Bindable = osuConfig.GetBindable<bool>(OsuConfig.DetectPerformanceIssues),
|
||||
},
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user