mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
Fix the MOTHERLOAD of undetected issues that are now visible thanks to net6.0
This commit is contained in:
@ -26,7 +26,7 @@ namespace osu.Game.Beatmaps.ControlPoints
|
||||
Time = time;
|
||||
}
|
||||
|
||||
public int CompareTo(ControlPointGroup other) => Time.CompareTo(other.Time);
|
||||
public int CompareTo(ControlPointGroup? other) => Time.CompareTo(other?.Time);
|
||||
|
||||
public void Add(ControlPoint point)
|
||||
{
|
||||
|
Reference in New Issue
Block a user