Actually return beat length and not BPM

This commit is contained in:
smoogipoo
2021-01-15 14:32:06 +09:00
parent c6e9a6cd5a
commit 24e991a5ef
3 changed files with 3 additions and 3 deletions

View File

@ -83,7 +83,7 @@ namespace osu.Game.Beatmaps
}
}
return 60000 / maxDurationBeatLength;
return maxDurationBeatLength;
}
IBeatmap IBeatmap.Clone() => Clone();