Save 12 bytes
This commit is contained in:
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user