Return BPM back to OnlineInfo

Revert commit of "Move BPM out of OnlineInfo"
This commit is contained in:
iiSaLMaN
2019-07-08 09:10:41 +03:00
parent d874574612
commit 90d5484818
9 changed files with 19 additions and 13 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.BPM.CompareTo(otherSet.BeatmapSet.BPM);
return BeatmapSet.OnlineInfo.BPM.CompareTo(otherSet.BeatmapSet.OnlineInfo.BPM);
case SortMode.Length:
return BeatmapSet.MaxLength.CompareTo(otherSet.BeatmapSet.MaxLength);