Skip to content

Commit

Permalink
Print the dump location
Browse files Browse the repository at this point in the history
  • Loading branch information
Genwald committed Dec 20, 2020
1 parent bb2748e commit 08999db
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions source/dumper.h
Original file line number Diff line number Diff line change
Expand Up @@ -255,13 +255,14 @@ void dumperMainLoop(int kDown) {
if(kHeld & KEY_R)
{
verifyDump = true;
printf("\nBeginning the dumping process with verification...\n" CONSOLE_ESC(s));
printf("\nBeginning the dumping process with verification...");
}
else
{
verifyDump = false;
printf("\nBeginning the dumping process...\n" CONSOLE_ESC(s));
printf("\nBeginning the dumping process...");
}
printf("\nThe dump will be saved to: %s\n" CONSOLE_ESC(s), outPath.c_str());
consoleUpdate(NULL);
u64 startTime = std::time(0);
appletBeginBlockingHomeButton(0);
Expand Down

0 comments on commit 08999db

Please sign in to comment.