diff options
author | Max Horn | 2005-01-10 22:06:49 +0000 |
---|---|---|
committer | Max Horn | 2005-01-10 22:06:49 +0000 |
commit | cffd917165a14e981d61342458a9d054d3c14705 (patch) | |
tree | 3aa6658993fa842477a7ab10b2a21dbf7625a531 /base | |
parent | e79458130835528ddf693fba868243cbbfb4ee9a (diff) | |
download | scummvm-rg350-cffd917165a14e981d61342458a9d054d3c14705.tar.gz scummvm-rg350-cffd917165a14e981d61342458a9d054d3c14705.tar.bz2 scummvm-rg350-cffd917165a14e981d61342458a9d054d3c14705.zip |
system.h was being included in tons of places, without any good reason; reduced this (total dependencies on system.h went down from 193 to 85 files)
svn-id: r16527
Diffstat (limited to 'base')
-rw-r--r-- | base/gameDetector.cpp | 1 | ||||
-rw-r--r-- | base/main.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/base/gameDetector.cpp b/base/gameDetector.cpp index 8a17faa684..44e823ef65 100644 --- a/base/gameDetector.cpp +++ b/base/gameDetector.cpp @@ -28,6 +28,7 @@ #include "base/version.h" #include "common/config-manager.h" +#include "common/system.h" #include "sound/mididrv.h" #include "sound/mixer.h" diff --git a/base/main.cpp b/base/main.cpp index 1cfd92a35b..51ca83fe0f 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -35,6 +35,7 @@ #include "base/version.h" #include "common/config-manager.h" #include "common/file.h" +#include "common/system.h" #include "common/timer.h" #include "gui/newgui.h" #include "gui/launcher.h" |