aboutsummaryrefslogtreecommitdiff
path: root/engines/cine
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/cine
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/cine')
-rw-r--r--engines/cine/anim.cpp3
-rw-r--r--engines/cine/bg.cpp3
-rw-r--r--engines/cine/msg.cpp2
-rw-r--r--engines/cine/object.cpp1
-rw-r--r--engines/cine/prc.cpp3
-rw-r--r--engines/cine/rel.cpp3
-rw-r--r--engines/cine/script.cpp3
-rw-r--r--engines/cine/sfx_player.cpp1
-rw-r--r--engines/cine/sound_driver.cpp3
-rw-r--r--engines/cine/unpack.cpp3
-rw-r--r--engines/cine/various.cpp3
11 files changed, 27 insertions, 1 deletions
diff --git a/engines/cine/anim.cpp b/engines/cine/anim.cpp
index 0566cbdef9..149794d6d2 100644
--- a/engines/cine/anim.cpp
+++ b/engines/cine/anim.cpp
@@ -22,6 +22,9 @@
*
*/
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "cine/cine.h"
#include "cine/anim.h"
#include "cine/gfx.h"
diff --git a/engines/cine/bg.cpp b/engines/cine/bg.cpp
index 0867dc716d..fc7010d955 100644
--- a/engines/cine/bg.cpp
+++ b/engines/cine/bg.cpp
@@ -22,6 +22,9 @@
*
*/
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "cine/cine.h"
#include "cine/various.h"
diff --git a/engines/cine/msg.cpp b/engines/cine/msg.cpp
index 71e4ee323b..691c024259 100644
--- a/engines/cine/msg.cpp
+++ b/engines/cine/msg.cpp
@@ -23,7 +23,7 @@
*/
#include "common/stdafx.h"
-#include "common/scummsys.h"
+#include "common/endian.h"
#include "cine/msg.h"
#include "cine/various.h"
diff --git a/engines/cine/object.cpp b/engines/cine/object.cpp
index 2ef2dc3a66..0c42646897 100644
--- a/engines/cine/object.cpp
+++ b/engines/cine/object.cpp
@@ -23,6 +23,7 @@
*/
#include "common/stdafx.h"
+#include "common/endian.h"
#include "common/scummsys.h"
#include "common/util.h"
diff --git a/engines/cine/prc.cpp b/engines/cine/prc.cpp
index 70b3daf9a0..8eaff59004 100644
--- a/engines/cine/prc.cpp
+++ b/engines/cine/prc.cpp
@@ -22,6 +22,9 @@
*
*/
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "cine/cine.h"
#include "cine/auto00.h"
#include "cine/various.h"
diff --git a/engines/cine/rel.cpp b/engines/cine/rel.cpp
index 75ec5efe33..7cd2dcb894 100644
--- a/engines/cine/rel.cpp
+++ b/engines/cine/rel.cpp
@@ -22,6 +22,9 @@
*
*/
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "cine/cine.h"
#include "cine/various.h"
diff --git a/engines/cine/script.cpp b/engines/cine/script.cpp
index b5569f9900..60def8e2e6 100644
--- a/engines/cine/script.cpp
+++ b/engines/cine/script.cpp
@@ -22,6 +22,9 @@
*
*/
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "cine/cine.h"
#include "cine/bg_list.h"
#include "cine/object.h"
diff --git a/engines/cine/sfx_player.cpp b/engines/cine/sfx_player.cpp
index 6ee9852255..dbe48155ad 100644
--- a/engines/cine/sfx_player.cpp
+++ b/engines/cine/sfx_player.cpp
@@ -23,6 +23,7 @@
*/
#include "common/stdafx.h"
+#include "common/endian.h"
#include "common/system.h"
#include "cine/cine.h"
diff --git a/engines/cine/sound_driver.cpp b/engines/cine/sound_driver.cpp
index 8973fdf445..d0398cb5b1 100644
--- a/engines/cine/sound_driver.cpp
+++ b/engines/cine/sound_driver.cpp
@@ -22,6 +22,9 @@
*
*/
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "cine/cine.h"
#include "cine/sound_driver.h"
diff --git a/engines/cine/unpack.cpp b/engines/cine/unpack.cpp
index cae9a2e1f2..597d412123 100644
--- a/engines/cine/unpack.cpp
+++ b/engines/cine/unpack.cpp
@@ -22,6 +22,9 @@
*
*/
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "cine/unpack.h"
namespace Cine {
diff --git a/engines/cine/various.cpp b/engines/cine/various.cpp
index 35e634653d..8c2f3b9cdc 100644
--- a/engines/cine/various.cpp
+++ b/engines/cine/various.cpp
@@ -22,6 +22,9 @@
*
*/
+#include "common/stdafx.h"
+#include "common/endian.h"
+
#include "cine/cine.h"
#include "cine/font.h"
#include "cine/main_loop.h"