summaryrefslogtreecommitdiff
path: root/apps/plugins/metronome.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/metronome.c')
-rw-r--r--apps/plugins/metronome.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugins/metronome.c b/apps/plugins/metronome.c
index a6b4181df2..157d116ff9 100644
--- a/apps/plugins/metronome.c
+++ b/apps/plugins/metronome.c
@@ -1663,11 +1663,13 @@ enum plugin_status plugin_start(const void* file)
1663 break; 1663 break;
1664 case METRONOME_LEFT: 1664 case METRONOME_LEFT:
1665 bpm_step_counter = 0; 1665 bpm_step_counter = 0;
1666 /* fallthrough */
1666 case METRONOME_LEFT_REP: 1667 case METRONOME_LEFT_REP:
1667 change_bpm(-1); 1668 change_bpm(-1);
1668 break; 1669 break;
1669 case METRONOME_RIGHT: 1670 case METRONOME_RIGHT:
1670 bpm_step_counter = 0; 1671 bpm_step_counter = 0;
1672 /* fallthrough */
1671 case METRONOME_RIGHT_REP: 1673 case METRONOME_RIGHT_REP:
1672 change_bpm(1); 1674 change_bpm(1);
1673 break; 1675 break;