1
0
mirror of https://github.com/mist-devel/mist-firmware.git synced 2026-04-28 21:18:30 +00:00

Fix the 'V' string in the helptext, too (#88)

This commit is contained in:
Gyorgy Szombathelyi
2022-04-09 15:25:05 +02:00
parent 158d175ac2
commit 14e2981f30

View File

@@ -374,12 +374,6 @@ void Setup8bitMenu() {
char *c, *p;
int i;
// set helptext with core display on top of basic info
strcpy(helptext_custom, HELPTEXT_SPACER);
strcat(helptext_custom, OsdCoreName());
strcat(helptext_custom, helptexts[HELPTEXT_MAIN]);
helptext=helptext_custom;
c = user_io_get_core_name();
if(!c[0]) OsdCoreNameSet("8BIT");
else OsdCoreNameSet(c);
@@ -397,5 +391,12 @@ void Setup8bitMenu() {
OsdCoreNameSet(s);
}
}
// set helptext with core display on top of basic info
strcpy(helptext_custom, HELPTEXT_SPACER);
strcat(helptext_custom, OsdCoreName());
strcat(helptext_custom, helptexts[HELPTEXT_MAIN]);
helptext=helptext_custom;
SetupMenu(GetMenuPage_8bit, GetMenuItem_8bit, NULL);
}