diff options
author | Johannes Schickel | 2011-12-05 23:00:06 +0100 |
---|---|---|
committer | Johannes Schickel | 2011-12-05 23:00:34 +0100 |
commit | 2362a3f689a3a87b342339e274a2f29e5125ddf2 (patch) | |
tree | f6540d94ecd84fb2dba6d9f518e4ea164033d427 | |
parent | bc0d9bd3a7830f8c67ef417c8af2e85c88666eaf (diff) | |
download | scummvm-rg350-2362a3f689a3a87b342339e274a2f29e5125ddf2.tar.gz scummvm-rg350-2362a3f689a3a87b342339e274a2f29e5125ddf2.tar.bz2 scummvm-rg350-2362a3f689a3a87b342339e274a2f29e5125ddf2.zip |
GUI: Add new line to error string in debugger.
-rw-r--r-- | gui/debugger.cpp | 2 |
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: { |