diff options
author | Christoph Mallon | 2012-03-17 18:55:10 +0100 |
---|---|---|
committer | Christoph Mallon | 2012-03-17 23:00:55 +0100 |
commit | 55c3350e38f1e74b478657624368169556845ad2 (patch) | |
tree | 83e1acafc30c335a5a0e9001a636eae0de7248ad /devtools/create_kyradat | |
parent | 9f827e339297306eed2d7b9a355eccd7d2ac0328 (diff) | |
download | scummvm-rg350-55c3350e38f1e74b478657624368169556845ad2.tar.gz scummvm-rg350-55c3350e38f1e74b478657624368169556845ad2.tar.bz2 scummvm-rg350-55c3350e38f1e74b478657624368169556845ad2.zip |
DEVTOOLS: Include necessary headers for compilation.
Diffstat (limited to 'devtools/create_kyradat')
-rw-r--r-- | devtools/create_kyradat/create_kyradat.cpp | 2 | ||||
-rw-r--r-- | devtools/create_kyradat/extract.cpp | 2 | ||||
-rw-r--r-- | devtools/create_kyradat/games.cpp | 2 | ||||
-rw-r--r-- | devtools/create_kyradat/tables.cpp | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/devtools/create_kyradat/create_kyradat.cpp b/devtools/create_kyradat/create_kyradat.cpp index 489be3e04d..a87bde3e26 100644 --- a/devtools/create_kyradat/create_kyradat.cpp +++ b/devtools/create_kyradat/create_kyradat.cpp @@ -38,6 +38,8 @@ #include "extract.h" #include "md5.h" +#include "common/language.h" +#include "common/platform.h" #include <string> #include <map> diff --git a/devtools/create_kyradat/extract.cpp b/devtools/create_kyradat/extract.cpp index 34308f1b5b..86244fce42 100644 --- a/devtools/create_kyradat/extract.cpp +++ b/devtools/create_kyradat/extract.cpp @@ -24,6 +24,8 @@ #define FORBIDDEN_SYMBOL_ALLOW_ALL #include "extract.h" +#include "common/language.h" +#include "common/platform.h" #include <algorithm> diff --git a/devtools/create_kyradat/games.cpp b/devtools/create_kyradat/games.cpp index 258d2dd50d..a2759b1e53 100644 --- a/devtools/create_kyradat/games.cpp +++ b/devtools/create_kyradat/games.cpp @@ -24,6 +24,8 @@ #define FORBIDDEN_SYMBOL_ALLOW_ALL #include "create_kyradat.h" +#include "common/language.h" +#include "common/platform.h" // Game tables diff --git a/devtools/create_kyradat/tables.cpp b/devtools/create_kyradat/tables.cpp index 1b9ca45259..1b9f90f18f 100644 --- a/devtools/create_kyradat/tables.cpp +++ b/devtools/create_kyradat/tables.cpp @@ -25,6 +25,8 @@ #include "tables.h" #include "create_kyradat.h" +#include "common/language.h" +#include "common/platform.h" #define EXTRACT_END_ENTRY { UNK_LANG, kPlatformUnknown, { 0, 0, { { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } } } } |