mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 13:37:25 +08:00
Adjust casing of curve type menu items
The "Perfect curve" one in particular... fixes test failures, as some tests were relying on this particular casing. But the new version feels more correct anyway, so it's whatever.
This commit is contained in:
parent
5f302662be
commit
8e39dbbff1
@ -56,13 +56,13 @@ namespace osu.Game.Rulesets.Objects.Types
|
||||
return "Catmull";
|
||||
|
||||
case SplineType.BSpline:
|
||||
return Degree == null ? "Bezier" : "B-Spline";
|
||||
return Degree == null ? "Bezier" : "B-spline";
|
||||
|
||||
case SplineType.Linear:
|
||||
return "Linear";
|
||||
|
||||
case SplineType.PerfectCurve:
|
||||
return "Perfect Curve";
|
||||
return "Perfect curve";
|
||||
|
||||
default:
|
||||
return Type.ToString();
|
||||
|
Loading…
Reference in New Issue
Block a user