mirror of
https://github.com/rvtr/GodMode9i.git
synced 2025-11-02 00:11:07 -04:00
Bug fix: Always show DSi power text if in DSi mode
This commit is contained in:
parent
568f0f0eb7
commit
3019cb9dad
@ -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);
|
||||
|
||||
|
||||
@ -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);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user