From bdb03145c31c07f0fd4c6c35d00ea16eedf943dc Mon Sep 17 00:00:00 2001 From: liquidraver <504870+liquidraver@users.noreply.github.com> Date: Fri, 22 May 2026 15:02:47 +0200 Subject: [PATCH] joystick UI: drop dead do_render label The wake-path goto was replaced with _pending_render + continue during the loop refactor; the label became unreachable. gcc flagged it with -Wunused-label. --- zephcore/helpers/ui-joystick/joystick_ui_task.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/zephcore/helpers/ui-joystick/joystick_ui_task.cpp b/zephcore/helpers/ui-joystick/joystick_ui_task.cpp index 0da5292..3231b39 100644 --- a/zephcore/helpers/ui-joystick/joystick_ui_task.cpp +++ b/zephcore/helpers/ui-joystick/joystick_ui_task.cpp @@ -819,7 +819,6 @@ void JoystickUITask::loop() _pending_render = true; } -do_render: if (!_display.isOn() || !_curr) { return; }