From 3019cb9dada306a810b4aaf3aba4e0b86dee5fc8 Mon Sep 17 00:00:00 2001 From: RocketRobz Date: Sat, 6 Oct 2018 21:28:23 -0600 Subject: [PATCH] Bug fix: Always show DSi power text if in DSi mode --- arm9/source/driveMenu.cpp | 2 +- arm9/source/file_browse.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arm9/source/driveMenu.cpp b/arm9/source/driveMenu.cpp index 0a4bc13..e5dd4f4 100644 --- a/arm9/source/driveMenu.cpp +++ b/arm9/source/driveMenu.cpp @@ -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); diff --git a/arm9/source/file_browse.cpp b/arm9/source/file_browse.cpp index 06defa7..9d5d30f 100644 --- a/arm9/source/file_browse.cpp +++ b/arm9/source/file_browse.cpp @@ -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);