mirror of
https://github.com/ppy/osu
synced 2024-12-14 02:46:27 +00: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);
|
||||
if (result != 0)
|
||||
return result;
|
||||
return base.Compare(x, y);
|
||||
return base.Compare(y, x);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user