1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 08:43:20 +08:00

Start alternating at 225BPM as previously

This commit is contained in:
smoogipoo 2021-07-05 18:38:02 +09:00
parent 2b8efe21ca
commit 695af31c58

View File

@ -266,8 +266,8 @@ namespace osu.Game.Rulesets.Osu.Replays
}
}
// Start alternating once the time separation is too small (equivalent 120BPM @ 1/4 divisor).
if (timeDifference > 0 && timeDifference < 125)
// Start alternating once the time separation is too small (faster than ~225BPM).
if (timeDifference > 0 && timeDifference < 266)
buttonIndex++;
else
buttonIndex = 0;