Bug fix: Always show DSi power text if in DSi mode

This commit is contained in:
RocketRobz 2018-10-06 21:28:23 -06:00
parent 568f0f0eb7
commit 3019cb9dad
2 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ void driveMenu (void) {
}
}
printf ("\x1b[23;0H");
printf (isRegularDS ? POWERTEXT_DS : POWERTEXT);
printf ((!isDSiMode() && isRegularDS) ? POWERTEXT_DS : POWERTEXT);
consoleInit(NULL, 0, BgType_Text4bpp, BgSize_T_256x256, 15, 0, true, true);

View File

@ -287,7 +287,7 @@ string browseForFile (void) {
printf ("\x1b[22;0H");
printf ("X - DELETE");
printf ("\x1b[23;0H");
printf (isRegularDS ? POWERTEXT_DS : POWERTEXT);
printf ((!isDSiMode() && isRegularDS) ? POWERTEXT_DS : POWERTEXT);
consoleInit(NULL, 0, BgType_Text4bpp, BgSize_T_256x256, 15, 0, true, true);
showDirectoryContents (dirContents, screenOffset);