diff options
author | Colin Snover | 2016-11-10 10:49:47 -0600 |
---|---|---|
committer | Colin Snover | 2016-11-10 10:49:59 -0600 |
commit | faaa1a6b1f473955039fe88c127f496f4824434e (patch) | |
tree | 22b881a23a82cc185a047c902124ba172aa1d46c | |
parent | a895cf1b5af337c8ff300596ceaebc192a127472 (diff) | |
download | scummvm-rg350-faaa1a6b1f473955039fe88c127f496f4824434e.tar.gz scummvm-rg350-faaa1a6b1f473955039fe88c127f496f4824434e.tar.bz2 scummvm-rg350-faaa1a6b1f473955039fe88c127f496f4824434e.zip |
SCI: Add missing newline in debugger output
-rw-r--r-- | engines/sci/console.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp index 04fe0f78f4..83f1271252 100644 --- a/engines/sci/console.cpp +++ b/engines/sci/console.cpp @@ -4653,7 +4653,7 @@ int Console::printObject(reg_t pos) { uint i; if (!obj) { - debugPrintf("[%04x:%04x]: Not an object.", PRINT_REG(pos)); + debugPrintf("[%04x:%04x]: Not an object.\n", PRINT_REG(pos)); return 1; } |