1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 23:22:55 +08:00
This commit is contained in:
n4b3l 2016-12-18 03:56:27 +01:00
parent 3d64bee069
commit f551133b0e

View File

@ -177,7 +177,6 @@ namespace osu.Game.Screens.Select
{
double bpmMax = double.MinValue;
double bpmMin = double.MaxValue;
//double bpmMost = 60000/ beatmap.Beatmap.ControlPoints.Select(b => b.BeatLength).GroupBy(bl => bl).OrderByDescending(grp => grp.Count()).Select(grp => grp.Key).First();
double bpmMost = beatmap.Beatmap.BPMAt(beatmap.Beatmap.ControlPoints.GroupBy(b => b.BeatLength).OrderByDescending(grp => grp.Count()).First().First().Time);
foreach (ControlPoint a in beatmap.Beatmap.ControlPoints)
{