From c0e347f2b4f965cc4998aacc9ba24c8d47e80147 Mon Sep 17 00:00:00 2001 From: Pk11 Date: Sun, 15 Aug 2021 15:40:13 -0500 Subject: [PATCH] Fix double : in dumping prompts --- arm9/source/dumpOperations.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arm9/source/dumpOperations.cpp b/arm9/source/dumpOperations.cpp index 70692ea..aa8c12b 100644 --- a/arm9/source/dumpOperations.cpp +++ b/arm9/source/dumpOperations.cpp @@ -305,7 +305,7 @@ void ndsCardDump(void) { //bool showGameCardMsgAgain = false; font->clear(false); - font->printf(0, 0, false, Alignment::left, Palette::white, "Dump NDS card ROM to\n\"%s:/gm9i/out\"?", sdMounted ? "sd:" : "fat:"); + font->printf(0, 0, false, Alignment::left, Palette::white, "Dump NDS card ROM to\n\"%s:/gm9i/out\"?", sdMounted ? "sd" : "fat"); font->print(0, 2, false, "( yes, trim, no, save only)"); font->update(false); @@ -630,7 +630,7 @@ void gbaCartDump(void) { int pressed = 0; font->clear(false); - font->printf(0, 0, false, Alignment::left, Palette::white, "Dump GBA cart ROM to\n\"%s:/gm9i/out\"?", sdMounted ? "sd:" : "fat:"); + font->printf(0, 0, false, Alignment::left, Palette::white, "Dump GBA cart ROM to\n\"%s:/gm9i/out\"?", sdMounted ? "sd" : "fat"); font->print(0, 2, false, "( yes, no)"); font->update(false);