1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 14:13:20 +08:00

rename AccType to AccuracyDisplay

This commit is contained in:
cdwcgt 2022-12-30 23:06:10 +09:00
parent 3c32a50c12
commit 784fe7ecf2
No known key found for this signature in database
GPG Key ID: 144396D01095C3A2

View File

@ -14,12 +14,12 @@ namespace osu.Game.Screens.Play.HUD
public abstract partial class GameplayAccuracyCounter : PercentageCounter
{
[SettingSource("Accuracy Display Mode")]
public Bindable<AccuracyType> AccType { get; } = new Bindable<AccuracyType>();
public Bindable<AccuracyType> AccuracyDisplay { get; } = new Bindable<AccuracyType>();
[BackgroundDependencyLoader]
private void load(ScoreProcessor scoreProcessor)
{
AccType.BindValueChanged(mod =>
AccuracyDisplay.BindValueChanged(mod =>
{
Current.UnbindBindings();