aboutsummaryrefslogtreecommitdiffstats
path: root/src/sequencer.c
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2024-01-15 10:17:58 +0100
committerBad Diode <bd@badd10de.dev>2024-01-15 10:17:58 +0100
commite8f4708a6d809c33719ec2f773d23e05c8619b2b (patch)
tree5ab02aef007e060c34ead52d4fe68f8ccf200c37 /src/sequencer.c
parentbe37f274be067e92f9240112b7a047b8ef9e09b0 (diff)
downloadstepper-e8f4708a6d809c33719ec2f773d23e05c8619b2b.tar.gz
stepper-e8f4708a6d809c33719ec2f773d23e05c8619b2b.zip
Fix bug when sound would not be stopped in link mode when toggling
Diffstat (limited to 'src/sequencer.c')
-rw-r--r--src/sequencer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sequencer.c b/src/sequencer.c
index 3433da1..981bbc6 100644
--- a/src/sequencer.c
+++ b/src/sequencer.c
@@ -577,6 +577,7 @@ toggle_playing(void) {
577 settings.sync == SYNC_IN_LINK_24BPQ || 577 settings.sync == SYNC_IN_LINK_24BPQ ||
578 settings.sync == SYNC_IN_LINK_12BPQ || 578 settings.sync == SYNC_IN_LINK_12BPQ ||
579 settings.sync == SYNC_IN_LINK_4BPQ) { 579 settings.sync == SYNC_IN_LINK_4BPQ) {
580 stop_sound();
580 return; 581 return;
581 } 582 }
582 583