From 3ae0e539ccef3901dcf8e070da9744ce3f0b1b5f Mon Sep 17 00:00:00 2001 From: RocketRobz Date: Mon, 3 Feb 2020 19:23:56 -0700 Subject: [PATCH] Actually, use dark blue --- arm9/source/file_browse.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arm9/source/file_browse.cpp b/arm9/source/file_browse.cpp index 89f393b..b13706e 100644 --- a/arm9/source/file_browse.cpp +++ b/arm9/source/file_browse.cpp @@ -158,7 +158,7 @@ void showDirectoryContents (const vector& dirContents, int fileOffset, if ((fileOffset - startRow) == i) { printf ("\x1B[47m"); // Print foreground white color } else if (entry->isDirectory) { - printf ("\x1B[31m"); // Print background red color + printf ("\x1B[34m"); // Print background blue color } else { printf ("\x1B[40m"); // Print foreground black color } @@ -422,7 +422,7 @@ void fileBrowse_drawBottomScreen(DirEntry* entry, int fileOffset) { printf (POWERTEXT); } - printf ("\x1B[40m"); // Print foreground black color + printf (entry->isDirectory ? "\x1B[34m" : "\x1B[40m"); // Print background blue color or foreground black color printf ("\x1b[0;0H"); printf (entry->name.c_str()); printf ("\n"); @@ -439,7 +439,7 @@ void fileBrowse_drawBottomScreen(DirEntry* entry, int fileOffset) { printf ("\x1b[9;0H"); printf ("\x1B[47m"); // Print foreground white color printf ("[CLIPBOARD]\n"); - printf ("\x1B[40m"); // Print foreground black color + printf (clipboardFolder ? "\x1B[34m" : "\x1B[40m"); // Print background blue color or foreground black color printf (clipboardFilename); } }