diff options
author | richiesams | 2013-08-18 15:17:37 -0500 |
---|---|---|
committer | richiesams | 2013-08-18 19:53:00 -0500 |
commit | 589c29e6e15e5d2957b92b1a03c6bf43a327f541 (patch) | |
tree | cc28adfecd5fb4dfe75f4a49d5bc9140bac55293 /engines/zvision | |
parent | 09ae4443d4d8ea9781ce7c98c26c4010b4a3427a (diff) | |
download | scummvm-rg350-589c29e6e15e5d2957b92b1a03c6bf43a327f541.tar.gz scummvm-rg350-589c29e6e15e5d2957b92b1a03c6bf43a327f541.tar.bz2 scummvm-rg350-589c29e6e15e5d2957b92b1a03c6bf43a327f541.zip |
ZVISION: Add newlines to console debug statements
Diffstat (limited to 'engines/zvision')
-rw-r--r-- | engines/zvision/console.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/zvision/console.cpp b/engines/zvision/console.cpp index dfafb26e2a..69d19ab53a 100644 --- a/engines/zvision/console.cpp +++ b/engines/zvision/console.cpp @@ -168,7 +168,7 @@ bool Console::cmdSetPanoramaScale(int argc, const char **argv) { bool Console::cmdChangeLocation(int argc, const char **argv) { if (argc != 6) { - DebugPrintf("Use changelocation <char: world> <char: room> <char:node> <char:view> <int: x position> to change your location"); + DebugPrintf("Use changelocation <char: world> <char: room> <char:node> <char:view> <int: x position> to change your location\n"); return true; } @@ -179,7 +179,7 @@ bool Console::cmdChangeLocation(int argc, const char **argv) { bool Console::cmdDumpFile(int argc, const char **argv) { if (argc != 2) { - DebugPrintf("Use dumpfile <fileName> to dump a file"); + DebugPrintf("Use dumpfile <fileName> to dump a file\n"); return true; } |