Add Not In List and All In List

This commit is contained in:
Armel FAUVEAU
2024-06-24 05:41:21 +02:00
parent d356541788
commit ee59118fce
11 changed files with 75 additions and 25 deletions

View File

@@ -810,7 +810,11 @@ void UI_DisplayMenu(void)
case MENU_S_LIST:
if (gSubMenuSelection < 3)
sprintf(String, "LIST%u", 1 + gSubMenuSelection);
else
else if (gSubMenuSelection == 3)
strcpy(String, "NOT\nIN LISTS");
else if (gSubMenuSelection == 4)
strcpy(String, "ALL\nIN LISTS");
else if (gSubMenuSelection == 5)
strcpy(String, "ALL");
break;