@@ -46,7 +46,9 @@ u32 ShowInstallerStatus(void) {
46
46
const u32 pos_y0 = pos_yb + 50 ;
47
47
const u32 stp = 14 ;
48
48
49
- DrawStringF (BOT_SCREEN , pos_xb , pos_yb , COLOR_STD_FONT , COLOR_STD_BG , "SafeB9SInstaller v" VERSION "\n" "-----------------------" "\n" "https://github.com/d0k3/SafeB9SInstaller" );
49
+ // DrawStringF(BOT_SCREEN, pos_xb, pos_yb, COLOR_STD_FONT, COLOR_STD_BG, "SafeB9SInstaller v" VERSION "\n" "-----------------------" "\n" "https://github.com/d0k3/SafeB9SInstaller");
50
+ DrawStringF (BOT_SCREEN , pos_xb , pos_yb , COLOR_STD_FONT , COLOR_STD_BG , APP_TITLE "\n" "%.*s" "\n" APP_URL ,
51
+ strnlen (APP_TITLE , 32 ), "--------------------------------" );
50
52
51
53
DrawStringF (BOT_SCREEN , pos_x0 , pos_y0 + (0 * stp ), COLOR_STD_FONT , COLOR_STD_BG , "ARM9LoaderHax -" );
52
54
DrawStringF (BOT_SCREEN , pos_x0 , pos_y0 + (1 * stp ), COLOR_STD_FONT , COLOR_STD_BG , "MicroSD Card -" );
@@ -64,7 +66,7 @@ u32 ShowInstallerStatus(void) {
64
66
DrawStringF (BOT_SCREEN , pos_x1 , pos_y0 + (5 * stp ), COLOR_STATUS (statusBackup ) , COLOR_STD_BG , "%-21.21s" , msgBackup );
65
67
DrawStringF (BOT_SCREEN , pos_x1 , pos_y0 + (6 * stp ), COLOR_STATUS (statusInstall ), COLOR_STD_BG , "%-21.21s" , msgInstall );
66
68
67
- DrawStringF (BOT_SCREEN , pos_xb , pos_yu - 10 , COLOR_STD_FONT , COLOR_STD_BG , "Usage instructions: https://%s3ds.guide/" , IS_DEVKIT ? "dev." : "" );
69
+ DrawStringF (BOT_SCREEN , pos_xb , pos_yu - 10 , COLOR_STD_FONT , COLOR_STD_BG , APP_USAGE );
68
70
return 0 ;
69
71
}
70
72
@@ -129,12 +131,11 @@ u32 SafeB9SInstaller(void) {
129
131
statusFirm = STATUS_RED ;
130
132
return 1 ;
131
133
}
132
- if (CheckBoot9Strap (FIRM_BUFFER ) != 0 ) {
133
- snprintf (msgFirm , 64 , "not boot9strap" );
134
+ if (CheckFirmPayload (FIRM_BUFFER , msgFirm ) != 0 ) {
134
135
statusFirm = STATUS_RED ;
135
136
return 1 ;
136
137
}
137
- snprintf (msgFirm , 64 , "loaded & verified" );
138
+ // snprintf(msgFirm, 64, "loaded & verified");
138
139
statusFirm = STATUS_GREEN ;
139
140
ShowInstallerStatus ();
140
141
// provided FIRM is okay!
0 commit comments