aboutsummaryrefslogtreecommitdiff
path: root/engines/gob
diff options
context:
space:
mode:
authorMax Horn2006-03-29 15:59:37 +0000
committerMax Horn2006-03-29 15:59:37 +0000
commit8cdee5a9310aecb0c8e39ceee4059b221d80ee0f (patch)
tree64716fc107097fd6cb82249f02de7642742e4e96 /engines/gob
parent0da5fb4c1c14e5953b2df8e495681bb5f70dec60 (diff)
downloadscummvm-rg350-8cdee5a9310aecb0c8e39ceee4059b221d80ee0f.tar.gz
scummvm-rg350-8cdee5a9310aecb0c8e39ceee4059b221d80ee0f.tar.bz2
scummvm-rg350-8cdee5a9310aecb0c8e39ceee4059b221d80ee0f.zip
Do not #include endian.h in scummsys.h (cuts down deps on endian.h from ~400 to ~250). Many greetings to eriktorbjorn, and have fun recompiling.
svn-id: r21500
Diffstat (limited to 'engines/gob')
-rw-r--r--engines/gob/cdrom.cpp4
-rw-r--r--engines/gob/draw.cpp4
-rw-r--r--engines/gob/driver_vga.cpp4
-rw-r--r--engines/gob/game.cpp4
-rw-r--r--engines/gob/init.cpp4
-rw-r--r--engines/gob/inter.cpp4
-rw-r--r--engines/gob/inter_v1.cpp4
-rw-r--r--engines/gob/map.cpp4
-rw-r--r--engines/gob/mult.cpp4
-rw-r--r--engines/gob/mult_v1.cpp3
-rw-r--r--engines/gob/mult_v2.cpp3
-rw-r--r--engines/gob/pack.cpp4
-rw-r--r--engines/gob/parse.cpp4
-rw-r--r--engines/gob/parse_v1.cpp3
-rw-r--r--engines/gob/parse_v2.cpp3
-rw-r--r--engines/gob/scenery.cpp4
-rw-r--r--engines/gob/video.cpp3
17 files changed, 63 insertions, 0 deletions
diff --git a/engines/gob/cdrom.cpp b/engines/gob/cdrom.cpp
index d5b3dde171..1a21cf0b67 100644
--- a/engines/gob/cdrom.cpp
+++ b/engines/gob/cdrom.cpp
@@ -19,6 +19,10 @@
* $Id$
*
*/
+
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "gob/gob.h"
#include "gob/cdrom.h"
#include "gob/dataio.h"
diff --git a/engines/gob/draw.cpp b/engines/gob/draw.cpp
index 62213b607e..caf4a73ce8 100644
--- a/engines/gob/draw.cpp
+++ b/engines/gob/draw.cpp
@@ -20,6 +20,10 @@
* $Id$
*
*/
+
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "gob/gob.h"
#include "gob/draw.h"
#include "gob/global.h"
diff --git a/engines/gob/driver_vga.cpp b/engines/gob/driver_vga.cpp
index 3a2f44bc11..b34ab14a66 100644
--- a/engines/gob/driver_vga.cpp
+++ b/engines/gob/driver_vga.cpp
@@ -20,6 +20,10 @@
* $Id$
*
*/
+
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "gob/driver_vga.h"
#include "graphics/primitives.h"
diff --git a/engines/gob/game.cpp b/engines/gob/game.cpp
index 677c0cc5cd..32d3d9bce6 100644
--- a/engines/gob/game.cpp
+++ b/engines/gob/game.cpp
@@ -20,6 +20,10 @@
* $Id$
*
*/
+
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "gob/gob.h"
#include "gob/global.h"
#include "gob/game.h"
diff --git a/engines/gob/init.cpp b/engines/gob/init.cpp
index 43b6344499..a5ba883590 100644
--- a/engines/gob/init.cpp
+++ b/engines/gob/init.cpp
@@ -20,6 +20,10 @@
* $Id$
*
*/
+
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "gob/gob.h"
#include "gob/dataio.h"
#include "gob/global.h"
diff --git a/engines/gob/inter.cpp b/engines/gob/inter.cpp
index 895301e07a..72bbe3194e 100644
--- a/engines/gob/inter.cpp
+++ b/engines/gob/inter.cpp
@@ -20,6 +20,10 @@
* $Id$
*
*/
+
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "gob/gob.h"
#include "gob/global.h"
#include "gob/inter.h"
diff --git a/engines/gob/inter_v1.cpp b/engines/gob/inter_v1.cpp
index 04eba247f2..88cb5f2307 100644
--- a/engines/gob/inter_v1.cpp
+++ b/engines/gob/inter_v1.cpp
@@ -20,6 +20,10 @@
* $Id$
*
*/
+
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "gob/gob.h"
#include "gob/global.h"
#include "gob/inter.h"
diff --git a/engines/gob/map.cpp b/engines/gob/map.cpp
index ed08d1d401..4e90e5f232 100644
--- a/engines/gob/map.cpp
+++ b/engines/gob/map.cpp
@@ -20,6 +20,10 @@
* $Id$
*
*/
+
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "gob/gob.h"
#include "gob/map.h"
#include "gob/video.h"
diff --git a/engines/gob/mult.cpp b/engines/gob/mult.cpp
index 0ac2e115bc..b16e5d9739 100644
--- a/engines/gob/mult.cpp
+++ b/engines/gob/mult.cpp
@@ -20,6 +20,10 @@
* $Id$
*
*/
+
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "gob/gob.h"
#include "gob/video.h"
#include "gob/anim.h"
diff --git a/engines/gob/mult_v1.cpp b/engines/gob/mult_v1.cpp
index 72328c42cf..a35ca3f321 100644
--- a/engines/gob/mult_v1.cpp
+++ b/engines/gob/mult_v1.cpp
@@ -21,6 +21,9 @@
*
*/
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "gob/gob.h"
#include "gob/mult.h"
#include "gob/game.h"
diff --git a/engines/gob/mult_v2.cpp b/engines/gob/mult_v2.cpp
index 635caa7528..3c105f8528 100644
--- a/engines/gob/mult_v2.cpp
+++ b/engines/gob/mult_v2.cpp
@@ -21,6 +21,9 @@
*
*/
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "gob/gob.h"
#include "gob/mult.h"
#include "gob/game.h"
diff --git a/engines/gob/pack.cpp b/engines/gob/pack.cpp
index c255a70ace..60ba5deea4 100644
--- a/engines/gob/pack.cpp
+++ b/engines/gob/pack.cpp
@@ -20,6 +20,10 @@
* $Id$
*
*/
+
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "gob/gob.h"
#include "gob/pack.h"
diff --git a/engines/gob/parse.cpp b/engines/gob/parse.cpp
index 947de49d79..d8373cf58f 100644
--- a/engines/gob/parse.cpp
+++ b/engines/gob/parse.cpp
@@ -20,6 +20,10 @@
* $Id$
*
*/
+
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "gob/gob.h"
#include "gob/global.h"
#include "gob/game.h"
diff --git a/engines/gob/parse_v1.cpp b/engines/gob/parse_v1.cpp
index b827a26943..74660223c4 100644
--- a/engines/gob/parse_v1.cpp
+++ b/engines/gob/parse_v1.cpp
@@ -21,6 +21,9 @@
*
*/
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "gob/gob.h"
#include "gob/parse.h"
#include "gob/inter.h"
diff --git a/engines/gob/parse_v2.cpp b/engines/gob/parse_v2.cpp
index 8aae929459..dce5c37995 100644
--- a/engines/gob/parse_v2.cpp
+++ b/engines/gob/parse_v2.cpp
@@ -21,6 +21,9 @@
*
*/
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "gob/gob.h"
#include "gob/parse.h"
#include "gob/inter.h"
diff --git a/engines/gob/scenery.cpp b/engines/gob/scenery.cpp
index 917c1995c5..0e65f9799a 100644
--- a/engines/gob/scenery.cpp
+++ b/engines/gob/scenery.cpp
@@ -20,6 +20,10 @@
* $Id$
*
*/
+
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "gob/gob.h"
#include "gob/scenery.h"
#include "gob/inter.h"
diff --git a/engines/gob/video.cpp b/engines/gob/video.cpp
index 1b52918a5b..5e0dcad185 100644
--- a/engines/gob/video.cpp
+++ b/engines/gob/video.cpp
@@ -20,6 +20,9 @@
* $Id$
*
*/
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "gob/gob.h"
#include "gob/global.h"
#include "gob/video.h"