From 5d5d05cf7cbcd70c58b0b32d42ba19468de97020 Mon Sep 17 00:00:00 2001 From: Pk11 Date: Fri, 31 Dec 2021 21:23:42 -0600 Subject: [PATCH] Fix `No drives found!` text being the wrong color --- arm9/source/driveMenu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm9/source/driveMenu.cpp b/arm9/source/driveMenu.cpp index 62ab830..f8d1f2f 100644 --- a/arm9/source/driveMenu.cpp +++ b/arm9/source/driveMenu.cpp @@ -79,7 +79,7 @@ void dm_drawTopScreen(void) { font->print(-1, 0, true, RetTime(), Alignment::right, Palette::blackGreen); if (dmOperations.size() == 0) { - font->print(0, 1, true, STR_NO_DRIVES_FOUND, Alignment::left, Palette::blackGreen); + font->print(0, 1, true, STR_NO_DRIVES_FOUND); } else for (int i = 0; i < (int)dmOperations.size(); i++) { Palette pal = dmCursorPosition == i ? Palette::white : Palette::gray;