diff --git a/firmware/drivers/button_queue.c b/firmware/drivers/button_queue.c index 48e0179001..68748d1fc0 100644 --- a/firmware/drivers/button_queue.c +++ b/firmware/drivers/button_queue.c @@ -48,7 +48,7 @@ static void button_boost(bool state) cpu_boost(true); } } - else if (!button_boosted && TIME_AFTER(current_tick, button_unboost_tick)) + else if (button_boosted && TIME_AFTER(current_tick, button_unboost_tick)) { button_boosted = false; cpu_boost(false);