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;

View File

@@ -105,7 +105,13 @@ void UI_DisplayStatus()
memcpy(line + x + 2, BITMAP_ScanList3, sizeof(BITMAP_ScanList3));
break;
case 3:
memcpy(line + x, gFontScanAll, sizeof(gFontScanAll));
memcpy(line + x + 2, BITMAP_ScanList4, sizeof(BITMAP_ScanList4));
break;
case 4:
memcpy(line + x, BITMAP_ScanList5, sizeof(BITMAP_ScanList5));
break;
case 5:
memcpy(line + x, BITMAP_ScanList6, sizeof(BITMAP_ScanList6));
break;
}
}