Skip to content

Commit

Permalink
AURORA: Fix spacing in dumpres console output
Browse files Browse the repository at this point in the history
  • Loading branch information
dressupgeekout authored and DrMcCoy committed May 28, 2018
1 parent 98ca935 commit e1ecb45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/engines/aurora/console.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1205,7 +1205,7 @@ void Console::cmdDumpRes(const CommandLine &cl) {
Common::UString file = Common::FilePath::getUserDataFile(cl.args);

if (dumpResource(cl.args, file))
printf("Dumped resource \"%s\"to \"%s\"", cl.args.c_str(), file.c_str());
printf("Dumped resource \"%s\" to \"%s\"", cl.args.c_str(), file.c_str());
else
printf("Failed dumping resource \"%s\"", cl.args.c_str());
}
Expand Down

0 comments on commit e1ecb45

Please sign in to comment.