mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 14:46:38 +09:00
Fix crash when hitting 'T' to tap timing while no timing point is selected
This commit is contained in:
@ -295,6 +295,9 @@ namespace osu.Game.Screens.Edit.Timing
|
||||
|
||||
private void handleTap()
|
||||
{
|
||||
if (selectedGroup?.Value == null)
|
||||
return;
|
||||
|
||||
tapTimings.Add(Clock.CurrentTime);
|
||||
|
||||
if (tapTimings.Count > initial_taps_to_ignore + max_taps_to_consider)
|
||||
|
Reference in New Issue
Block a user