Save 8 bytes

This commit is contained in:
Armel FAUVEAU
2025-02-09 03:46:19 +01:00
parent 28b26264be
commit fed607d272

View File

@@ -702,7 +702,7 @@ void UI_DisplayMenu(void)
case MENU_ABR: case MENU_ABR:
if(gSubMenuSelection == 0) if(gSubMenuSelection == 0)
{ {
sprintf(String, "%s", "OFF"); strcpy(String, "OFF");
} }
else if(gSubMenuSelection < 61) else if(gSubMenuSelection < 61)
{ {
@@ -711,7 +711,7 @@ void UI_DisplayMenu(void)
} }
else else
{ {
sprintf(String, "%s", "ON"); strcpy(String, "ON");
} }
// Obsolete ??? // Obsolete ???
@@ -1023,7 +1023,7 @@ void UI_DisplayMenu(void)
case MENU_SET_OFF: case MENU_SET_OFF:
if(gSubMenuSelection == 0) if(gSubMenuSelection == 0)
{ {
sprintf(String, "%s", "OFF"); strcpy(String, "OFF");
} }
else if(gSubMenuSelection < 121) else if(gSubMenuSelection < 121)
{ {
@@ -1090,7 +1090,7 @@ void UI_DisplayMenu(void)
case MENU_SET_VOL: case MENU_SET_VOL:
if(gSubMenuSelection == 0) if(gSubMenuSelection == 0)
{ {
sprintf(String, "%s", "OFF"); strcpy(String, "OFF");
} }
else if(gSubMenuSelection < 64) else if(gSubMenuSelection < 64)
{ {