From 258901bab96f0050385a9912c8ea0fe2a41b2d6f Mon Sep 17 00:00:00 2001 From: Nicola Mettifogo Date: Wed, 19 Sep 2007 08:40:12 +0000 Subject: Merged common/stdafx.h into common/scummsys.h. All referencing files have been updated. svn-id: r28966 --- gui/debugger.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'gui/debugger.cpp') 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"); -- cgit v1.2.3