mirror of
https://github.com/osukey/osukey.git
synced 2025-06-07 20:37:57 +09:00
Fix default comparator being inverted.
This commit is contained in:
parent
1964bc72e5
commit
ad63cbf455
@ -259,7 +259,7 @@ namespace osu.Game.Rulesets.UI
|
|||||||
int result = sY.ControlPoint.StartTime.CompareTo(sX.ControlPoint.StartTime);
|
int result = sY.ControlPoint.StartTime.CompareTo(sX.ControlPoint.StartTime);
|
||||||
if (result != 0)
|
if (result != 0)
|
||||||
return result;
|
return result;
|
||||||
return base.Compare(x, y);
|
return base.Compare(y, x);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user