Skip to content

Commit

Permalink
Fix method indent size
Browse files Browse the repository at this point in the history
Co-authored-by: Salman Ahmed <[email protected]>
  • Loading branch information
huoyaoyuan and frenzibyte authored Feb 29, 2024
1 parent e86ebd6 commit f28f19e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Game/Rulesets/Objects/Legacy/ConvertHitObjectParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ private IEnumerable<ArraySegment<PathControlPoint>> convertPoints(PathType type,

static bool isLinear(Vector2 p0, Vector2 p1, Vector2 p2)
=> Precision.AlmostEquals(0, (p1.Y - p0.Y) * (p2.X - p0.X)
- (p1.X - p0.X) * (p2.Y - p0.Y));
- (p1.X - p0.X) * (p2.Y - p0.Y));
}

private PathControlPoint[] mergePointsLists(List<ArraySegment<PathControlPoint>> controlPointList)
Expand Down

0 comments on commit f28f19e

Please sign in to comment.