Merged common/stdafx.h into common/scummsys.h. All referencing files have been updated.

svn-id: r28966
This commit is contained in:
Nicola Mettifogo 2007-09-19 08:40:12 +00:00
parent a89694c0d6
commit 258901bab9
693 changed files with 16240 additions and 3908 deletions

View file

@ -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");