Change SList label

This commit is contained in:
Armel FAUVEAU
2024-06-25 01:02:49 +02:00
parent b4b27cb209
commit 81f551738c

View File

@@ -809,11 +809,11 @@ void UI_DisplayMenu(void)
case MENU_S_LIST: case MENU_S_LIST:
if (gSubMenuSelection < 3) if (gSubMenuSelection < 3)
sprintf(String, "LIST%u", 1 + gSubMenuSelection); sprintf(String, "LIST [%u]", 1 + gSubMenuSelection);
else if (gSubMenuSelection == 3) else if (gSubMenuSelection == 3)
strcpy(String, "NOT\nIN LISTS"); strcpy(String, "LIST [0]\nNO LIST");
else if (gSubMenuSelection == 4) else if (gSubMenuSelection == 4)
strcpy(String, "ALL\nIN LISTS"); strcpy(String, "LISTS\n[1, 2, 3]");
else if (gSubMenuSelection == 5) else if (gSubMenuSelection == 5)
strcpy(String, "ALL"); strcpy(String, "ALL");
break; break;