Fixed the bug when sequence was erased without going to edit screen

This commit is contained in:
2023-12-14 17:28:57 +02:00
parent 4bc5067dfc
commit 47a05fbedf
2 changed files with 5 additions and 4 deletions

View File

@ -308,9 +308,10 @@ void externalClock() {
if (masterClockMode == 1 && extClockPPQN == 0) { // EXT-24
//reset cycles if there was no pulses for a while
if ((newExtPulseTime - lastExtPulseTime) > 125) { //125ms is 20bpm
for (byte i = 0; i < 6; i++) {
channelPulseCount[i] = 0;
}
//for (byte i = 0; i < 6; i++) {
//channelPulseCount[i] = 0;
//}
resetClocks();
}
if (!isPlaying) {