aboutsummaryrefslogtreecommitdiff
path: root/gui/debugger.cpp
diff options
context:
space:
mode:
authorNicola Mettifogo2007-09-19 08:40:12 +0000
committerNicola Mettifogo2007-09-19 08:40:12 +0000
commit258901bab96f0050385a9912c8ea0fe2a41b2d6f (patch)
treea3ae8675b679c9f3b58ac8d97c79369502ea23c1 /gui/debugger.cpp
parenta89694c0d61a75a960f5bec6c498659c988401cc (diff)
downloadscummvm-rg350-258901bab96f0050385a9912c8ea0fe2a41b2d6f.tar.gz
scummvm-rg350-258901bab96f0050385a9912c8ea0fe2a41b2d6f.tar.bz2
scummvm-rg350-258901bab96f0050385a9912c8ea0fe2a41b2d6f.zip
Merged common/stdafx.h into common/scummsys.h. All referencing files have been updated.
svn-id: r28966
Diffstat (limited to 'gui/debugger.cpp')
-rw-r--r--gui/debugger.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/gui/debugger.cpp b/gui/debugger.cpp
index 11d5d28e59..81a00d717c 100644
--- a/gui/debugger.cpp
+++ b/gui/debugger.cpp
@@ -23,8 +23,6 @@
*
*/
-#include "common/stdafx.h"
-
#include "common/system.h"
#include "gui/debugger.h"
@@ -391,13 +389,13 @@ bool Debugger::Cmd_Help(int argc, const char **argv) {
width = 0;
for (i = 0; i < _dvar_count; i++) {
size = strlen(_dvars[i].name) + 1;
-
+
if ((width + size) >= charsPerLine) {
DebugPrintf("\n");
width = size;
} else
width += size;
-
+
DebugPrintf("%s ", _dvars[i].name);
}
DebugPrintf("\n");