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

Increase max taps to 128 for now

Will revisit this in the future with a more sound algorithm.
This commit is contained in:
Dean Herbert 2022-06-02 17:27:51 +09:00
parent e75609dfb9
commit ee4beefd95

View File

@ -66,7 +66,7 @@ namespace osu.Game.Screens.Edit.Timing
private const int initial_taps_to_ignore = 4;
private const int max_taps_to_consider = 16;
private const int max_taps_to_consider = 128;
private const double transition_length = 500;