1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00

Remove uneeded complexity

This commit is contained in:
rumoi 2021-12-15 05:16:10 +13:00
parent c87ff82c1c
commit 4664bb1d29

View File

@ -55,7 +55,7 @@ namespace osu.Game.Rulesets.Osu.Difficulty.Skills
bool firstDeltaSwitch = false;
int rhythmStart = Math.Min(Previous.Count - 2, 0);
int rhythmStart = 0;
while (rhythmStart < Previous.Count - 2 && current.StartTime - Previous[rhythmStart].StartTime < history_time_max)
rhythmStart++;