Match casing in enum value

This commit is contained in:
smoogipoo
2021-08-02 15:08:42 +09:00
parent 9b98014606
commit 3e56388ba8
4 changed files with 5 additions and 5 deletions

View File

@ -80,7 +80,7 @@ namespace osu.Game.Rulesets.Catch.UI
hyperDashTrails.Add(drawable);
break;
case CatcherTrailAnimation.HyperDashAfterimage:
case CatcherTrailAnimation.HyperDashAfterImage:
hyperDashAfterImages.Add(drawable);
break;
}
@ -98,7 +98,7 @@ namespace osu.Game.Rulesets.Catch.UI
hyperDashTrails.Remove(drawable);
break;
case CatcherTrailAnimation.HyperDashAfterimage:
case CatcherTrailAnimation.HyperDashAfterImage:
hyperDashAfterImages.Remove(drawable);
break;
}