rhythm tweezers bug fix

This commit is contained in:
minenice55 2024-01-14 19:40:23 -05:00
parent 7d2bb329df
commit 39327e619c

View file

@ -274,6 +274,11 @@ namespace HeavenStudio.Games
public override void OnPlay(double beat) public override void OnPlay(double beat)
{ {
crHandlerInstance = null; crHandlerInstance = null;
foreach (var evt in scheduledInputs)
{
evt.Disable();
}
queuedIntervals.Clear();
PersistBlocks(beat); PersistBlocks(beat);
} }