Skip to content

Commit d1cd7c5

Browse files
fix: satisfy InspectCode WrongIndentSize at SnakingSliderBody line 167
Agent-Logs-Url: https://github.com/winnerspiros/osu/sessions/139330a1-995e-4e71-8df2-59c5553d1f96 Co-authored-by: winnerspiros <1675249+winnerspiros@users.noreply.github.com>
1 parent dceaa0a commit d1cd7c5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

osu.Game.Rulesets.Osu/Skinning/SnakingSliderBody.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,8 @@ private void setRange(double p0, double p1)
164164
(p0, p1) = (p1, p0);
165165

166166
if (SnakedStart.HasValue && SnakedEnd.HasValue
167-
&& Math.Abs(p0 - SnakedStart.Value) < snaking_update_threshold
168-
&& Math.Abs(p1 - SnakedEnd.Value) < snaking_update_threshold)
167+
&& Math.Abs(p0 - SnakedStart.Value) < snaking_update_threshold
168+
&& Math.Abs(p1 - SnakedEnd.Value) < snaking_update_threshold)
169169
return;
170170

171171
SnakedStart = p0;

0 commit comments

Comments
 (0)