From a0727ef9621e484ff97cc935642cc9131540c0df Mon Sep 17 00:00:00 2001 From: Cass May Date: Sun, 2 Sep 2018 17:53:07 +0100 Subject: [PATCH] Fix several sequencer bugs --- sequencer/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sequencer/main.py b/sequencer/main.py index 573242f..987b95d 100644 --- a/sequencer/main.py +++ b/sequencer/main.py @@ -154,10 +154,11 @@ def mode_buttons(): for row in range(total_rows): for col in range(total_cols): active_states[row][col] = False - ui_changed = False + ui_changed = True if is_triggered(Buttons.BTN_A): if (joy_last_pressed[5] + debounce_time < time.ticks_ms()): joy_last_pressed[5] = time.ticks_ms() + speaker.stop() display_help() ui_changed = True if is_triggered(Buttons.BTN_Menu):