Reinstate ntrboot display in config
This commit is contained in:
parent
13317b9548
commit
0419fc4e30
@ -239,7 +239,7 @@ void configMenu(bool oldPinStatus, u32 oldPinMode)
|
||||
|
||||
initScreens();
|
||||
|
||||
drawString(true, 10, 10, COLOR_TITLE, CONFIG_TITLE);
|
||||
drawFormattedString(true, 10, 10, COLOR_TITLE, "%s%s", CONFIG_TITLE, isNtrcardBoot ? " (ntrboot)" : "");
|
||||
drawString(true, 10, 10 + SPACING_Y, COLOR_TITLE, "Press A to select, START to save");
|
||||
|
||||
//Character to display a selected option
|
||||
|
@ -43,13 +43,13 @@ extern ConfigurationStatus needConfig;
|
||||
extern FirmwareSource firmSource;
|
||||
|
||||
bool isFirmlaunch = false,
|
||||
isSdMode;
|
||||
isSdMode,
|
||||
isNtrcardBoot;
|
||||
u16 launchedPath[41];
|
||||
|
||||
void main(int argc, char **argv, u32 magicWord)
|
||||
{
|
||||
bool isFirmProtEnabled,
|
||||
isNtrcardBoot,
|
||||
isSafeMode = false,
|
||||
isNoForceFlagSet = false;
|
||||
FirmwareType firmType;
|
||||
|
@ -115,7 +115,8 @@ typedef enum FirmwareType
|
||||
} FirmwareType;
|
||||
|
||||
extern bool isFirmlaunch,
|
||||
isSdMode;
|
||||
isSdMode,
|
||||
isNtrcardBoot;
|
||||
|
||||
extern u16 launchedFirmTidLow[8];
|
||||
extern u16 launchedPath[41];
|
||||
|
Reference in New Issue
Block a user