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:
parent
2b8efe21ca
commit
695af31c58
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user