From 8506ad6240c677314e9a0fd75556d9a33918b9e6 Mon Sep 17 00:00:00 2001 From: Lukas Krickl Date: Sun, 31 Aug 2025 17:16:30 +0200 Subject: [PATCH] action_menu: The initial draw now correctly takes the table lenth into account --- src/action_menu.s | 1 + 1 file changed, 1 insertion(+) diff --git a/src/action_menu.s b/src/action_menu.s index abacdc9..874e9d9 100644 --- a/src/action_menu.s +++ b/src/action_menu.s @@ -99,6 +99,7 @@ action_menu_init: ; draw the initial status line ld a, [action_menu_cursor] + ld b, ACTION_MENU_STR_TABLE_LEN ld hl, action_menu_str_table call select_menu_draw_status -- 2.30.2