diff options
author | Eugene Sandulenko | 2012-02-26 07:18:52 -0800 |
---|---|---|
committer | Eugene Sandulenko | 2012-02-26 07:18:52 -0800 |
commit | 80923297e3e186ceef557dc86113acd3870e3583 (patch) | |
tree | 4283f700e253762c070d05ed2ec9df4836db0afb /engines/scumm | |
parent | d3c4243ab5aa8438645340dca1900e678d8fd6ba (diff) | |
parent | 367131ef0ebbc446f5589b3523049eac3d5a572d (diff) | |
download | scummvm-rg350-80923297e3e186ceef557dc86113acd3870e3583.tar.gz scummvm-rg350-80923297e3e186ceef557dc86113acd3870e3583.tar.bz2 scummvm-rg350-80923297e3e186ceef557dc86113acd3870e3583.zip |
Merge pull request #192 from fingolfin/refactor-common
COMMON: Split common/util.h
Diffstat (limited to 'engines/scumm')
-rw-r--r-- | engines/scumm/detection.h | 3 | ||||
-rw-r--r-- | engines/scumm/detection_tables.h | 1 | ||||
-rw-r--r-- | engines/scumm/help.h | 1 | ||||
-rw-r--r-- | engines/scumm/scumm.h | 2 |
4 files changed, 6 insertions, 1 deletions
diff --git a/engines/scumm/detection.h b/engines/scumm/detection.h index ad8b3cec12..b6dfa757bb 100644 --- a/engines/scumm/detection.h +++ b/engines/scumm/detection.h @@ -23,7 +23,8 @@ #ifndef SCUMM_DETECTION_H #define SCUMM_DETECTION_H -#include "common/util.h" +#include "common/language.h" +#include "common/platform.h" namespace Scumm { diff --git a/engines/scumm/detection_tables.h b/engines/scumm/detection_tables.h index a44497f193..d7eedc3a83 100644 --- a/engines/scumm/detection_tables.h +++ b/engines/scumm/detection_tables.h @@ -24,6 +24,7 @@ #define SCUMM_DETECTION_TABLES_H #include "engines/obsolete.h" +#include "common/gui_options.h" #include "common/rect.h" #include "common/util.h" diff --git a/engines/scumm/help.h b/engines/scumm/help.h index 5ba6bdc65c..a3948566c4 100644 --- a/engines/scumm/help.h +++ b/engines/scumm/help.h @@ -24,6 +24,7 @@ #define SCUMM_HELP_H #include "common/str.h" +#include "common/platform.h" namespace Scumm { diff --git a/engines/scumm/scumm.h b/engines/scumm/scumm.h index 2f1e536f0a..cacf8c214e 100644 --- a/engines/scumm/scumm.h +++ b/engines/scumm/scumm.h @@ -24,6 +24,7 @@ #define SCUMM_H #include "engines/engine.h" + #include "common/endian.h" #include "common/events.h" #include "common/file.h" @@ -31,6 +32,7 @@ #include "common/keyboard.h" #include "common/random.h" #include "common/rect.h" +#include "common/rendermode.h" #include "common/str.h" #include "common/textconsole.h" #include "graphics/surface.h" |