aboutsummaryrefslogtreecommitdiff
path: root/saga
diff options
context:
space:
mode:
authorMax Horn2005-01-10 22:06:49 +0000
committerMax Horn2005-01-10 22:06:49 +0000
commitcffd917165a14e981d61342458a9d054d3c14705 (patch)
tree3aa6658993fa842477a7ab10b2a21dbf7625a531 /saga
parente79458130835528ddf693fba868243cbbfb4ee9a (diff)
downloadscummvm-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 'saga')
-rw-r--r--saga/render.cpp4
-rw-r--r--saga/saga.cpp4
2 files changed, 6 insertions, 2 deletions
diff --git a/saga/render.cpp b/saga/render.cpp
index 69f21a943e..c3a72e779e 100644
--- a/saga/render.cpp
+++ b/saga/render.cpp
@@ -35,7 +35,9 @@
#include "saga/objectmap.h"
#include "saga/render.h"
-#include <common/timer.h>
+
+#include "common/timer.h"
+#include "common/system.h"
namespace Saga {
diff --git a/saga/saga.cpp b/saga/saga.cpp
index e864414e69..89340353fc 100644
--- a/saga/saga.cpp
+++ b/saga/saga.cpp
@@ -26,9 +26,11 @@
#include "base/plugins.h"
#include "backends/fs/fs.h"
-#include "sound/mixer.h"
#include "common/file.h"
#include "common/config-manager.h"
+#include "common/system.h"
+
+#include "sound/mixer.h"
#include "saga/saga.h"