Save 12 bytes

This commit is contained in:
Armel FAUVEAU
2024-07-24 03:41:01 +02:00
parent 5b30394cb9
commit 921fd983d6

View File

@@ -1079,12 +1079,7 @@ void UI_DisplayMenu(void)
if (UI_MENU_GetCurrentMenuId() == MENU_SLIST1 || UI_MENU_GetCurrentMenuId() == MENU_SLIST2 || UI_MENU_GetCurrentMenuId() == MENU_SLIST3)
{
if(UI_MENU_GetCurrentMenuId() == MENU_SLIST1)
i = 0;
else if(UI_MENU_GetCurrentMenuId() == MENU_SLIST2)
i = 1;
else if(UI_MENU_GetCurrentMenuId() == MENU_SLIST3)
i = 2;
i = UI_MENU_GetCurrentMenuId() - MENU_SLIST1;
char *pPrintStr = String;