Move BPM out of OnlineInfo

This commit is contained in:
iiSaLMaN
2019-07-07 20:11:44 +03:00
parent 6ee10640e3
commit 3ea9629daf
10 changed files with 14 additions and 20 deletions

View File

@ -49,7 +49,7 @@ namespace osu.Game.Screens.Select.Carousel
return otherSet.BeatmapSet.DateAdded.CompareTo(BeatmapSet.DateAdded);
case SortMode.BPM:
return BeatmapSet.OnlineInfo.BPM.CompareTo(otherSet.BeatmapSet.OnlineInfo.BPM);
return BeatmapSet.BPM.CompareTo(otherSet.BeatmapSet.BPM);
case SortMode.Length:
return BeatmapSet.MaxLength.CompareTo(otherSet.BeatmapSet.MaxLength);