We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb2748e commit 08999dbCopy full SHA for 08999db
source/dumper.h
@@ -255,13 +255,14 @@ void dumperMainLoop(int kDown) {
255
if(kHeld & KEY_R)
256
{
257
verifyDump = true;
258
- printf("\nBeginning the dumping process with verification...\n" CONSOLE_ESC(s));
+ printf("\nBeginning the dumping process with verification...");
259
}
260
else
261
262
verifyDump = false;
263
- printf("\nBeginning the dumping process...\n" CONSOLE_ESC(s));
+ printf("\nBeginning the dumping process...");
264
265
+ printf("\nThe dump will be saved to: %s\n" CONSOLE_ESC(s), outPath.c_str());
266
consoleUpdate(NULL);
267
u64 startTime = std::time(0);
268
appletBeginBlockingHomeButton(0);
0 commit comments