diff options
author | Max Horn | 2012-02-22 21:03:17 +0100 |
---|---|---|
committer | Max Horn | 2012-02-26 15:21:36 +0100 |
commit | 367131ef0ebbc446f5589b3523049eac3d5a572d (patch) | |
tree | 4283f700e253762c070d05ed2ec9df4836db0afb /engines/scumm | |
parent | 215b41b244e042019f82cb507463d7e13672a6d0 (diff) | |
download | scummvm-rg350-367131ef0ebbc446f5589b3523049eac3d5a572d.tar.gz scummvm-rg350-367131ef0ebbc446f5589b3523049eac3d5a572d.tar.bz2 scummvm-rg350-367131ef0ebbc446f5589b3523049eac3d5a572d.zip |
COMMON: Move Language and Platform functionality into separate files
Diffstat (limited to 'engines/scumm')
-rw-r--r-- | engines/scumm/detection.h | 3 | ||||
-rw-r--r-- | engines/scumm/help.h | 1 |
2 files changed, 3 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/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 { |