1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 21:27:24 +08:00

Fix typo in argument name

This commit is contained in:
Dean Herbert 2023-11-17 17:54:15 +09:00
parent daaadf3fc3
commit eb30a603d9
No known key found for this signature in database

View File

@ -23,11 +23,11 @@ namespace osu.Game.Screens.Play.HUD
{
base.LoadComplete();
AccuracyDisplay.BindValueChanged(mod =>
AccuracyDisplay.BindValueChanged(mode =>
{
Current.UnbindBindings();
switch (mod.NewValue)
switch (mode.NewValue)
{
case AccuracyDisplayMode.Standard:
Current.BindTo(scoreProcessor.Accuracy);