From 9c69c5f4aee916078db5a87942272040d11c2ad7 Mon Sep 17 00:00:00 2001 From: RocketRobz Date: Thu, 28 Jan 2021 16:23:19 -0700 Subject: [PATCH] Fix `D` first appearing in the filename, when dumping GBA ROM --- arm9/source/dumpOperations.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arm9/source/dumpOperations.cpp b/arm9/source/dumpOperations.cpp index 8fc06bf..e37f0a1 100644 --- a/arm9/source/dumpOperations.cpp +++ b/arm9/source/dumpOperations.cpp @@ -682,7 +682,7 @@ void gbaCartDump(void) { sprintf(destPath, "fat:/gm9i/out/%s.gba", fileName); sprintf(destSavPath, "fat:/gm9i/out/%s.sav", fileName); consoleClear(); - iprintf("D%s.gba\nis dumping...\n", fileName); + iprintf("%s.gba\nis dumping...\n", fileName); iprintf("Do not remove the GBA cart.\n"); // Determine ROM size u32 romSize = 0x02000000;