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:
13
menu-8bit.c
13
menu-8bit.c
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user