Skip to content

Commit 08999db

Browse files
committed
Print the dump location
1 parent bb2748e commit 08999db

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

source/dumper.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,13 +255,14 @@ void dumperMainLoop(int kDown) {
255255
if(kHeld & KEY_R)
256256
{
257257
verifyDump = true;
258-
printf("\nBeginning the dumping process with verification...\n" CONSOLE_ESC(s));
258+
printf("\nBeginning the dumping process with verification...");
259259
}
260260
else
261261
{
262262
verifyDump = false;
263-
printf("\nBeginning the dumping process...\n" CONSOLE_ESC(s));
263+
printf("\nBeginning the dumping process...");
264264
}
265+
printf("\nThe dump will be saved to: %s\n" CONSOLE_ESC(s), outPath.c_str());
265266
consoleUpdate(NULL);
266267
u64 startTime = std::time(0);
267268
appletBeginBlockingHomeButton(0);

0 commit comments

Comments
 (0)