aboutsummaryrefslogtreecommitdiff
path: root/gui/debugger.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2011-12-05 23:00:06 +0100
committerJohannes Schickel2011-12-05 23:00:34 +0100
commit2362a3f689a3a87b342339e274a2f29e5125ddf2 (patch)
treef6540d94ecd84fb2dba6d9f518e4ea164033d427 /gui/debugger.cpp
parentbc0d9bd3a7830f8c67ef417c8af2e85c88666eaf (diff)
downloadscummvm-rg350-2362a3f689a3a87b342339e274a2f29e5125ddf2.tar.gz
scummvm-rg350-2362a3f689a3a87b342339e274a2f29e5125ddf2.tar.bz2
scummvm-rg350-2362a3f689a3a87b342339e274a2f29e5125ddf2.zip
GUI: Add new line to error string in debugger.
Diffstat (limited to 'gui/debugger.cpp')
-rw-r--r--gui/debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/debugger.cpp b/gui/debugger.cpp
index 3878cc00e3..26e62dc1d9 100644
--- a/gui/debugger.cpp
+++ b/gui/debugger.cpp
@@ -251,7 +251,7 @@ bool Debugger::parseCommand(const char *inputOrig) {
if (Common::parseBool(param[1], *(bool *)_dvars[i].variable))
DebugPrintf("(bool)%s = %s\n", param[0], *(bool *)_dvars[i].variable ? "true" : "false");
else
- DebugPrintf("Invalid value for boolean variable. Valid values are \"true\", \"false\", \"1\", \"0\", \"yes\", \"no\"");
+ DebugPrintf("Invalid value for boolean variable. Valid values are \"true\", \"false\", \"1\", \"0\", \"yes\", \"no\"\n");
break;
// Integer Array
case DVAR_INTARRAY: {