From 81f551738ca1a1dfa4f069f94baba9e99bb66c47 Mon Sep 17 00:00:00 2001 From: Armel FAUVEAU Date: Tue, 25 Jun 2024 01:02:49 +0200 Subject: [PATCH] Change SList label --- ui/menu.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/menu.c b/ui/menu.c index 1bbb450..bfa43c4 100644 --- a/ui/menu.c +++ b/ui/menu.c @@ -809,11 +809,11 @@ void UI_DisplayMenu(void) case MENU_S_LIST: if (gSubMenuSelection < 3) - sprintf(String, "LIST%u", 1 + gSubMenuSelection); + sprintf(String, "LIST [%u]", 1 + gSubMenuSelection); else if (gSubMenuSelection == 3) - strcpy(String, "NOT\nIN LISTS"); + strcpy(String, "LIST [0]\nNO LIST"); else if (gSubMenuSelection == 4) - strcpy(String, "ALL\nIN LISTS"); + strcpy(String, "LISTS\n[1, 2, 3]"); else if (gSubMenuSelection == 5) strcpy(String, "ALL"); break;