diff options
author | Filippos Karapetis | 2017-02-10 02:16:15 +0200 |
---|---|---|
committer | Filippos Karapetis | 2017-02-10 04:33:35 +0200 |
commit | fdc3baeeff72e0d2313c9015ca1e3ab187456c9e (patch) | |
tree | edd891b33ccaf5fa9f5cbbc5d991f6b868c95609 | |
parent | d895d230878e09a56d564a984fb66acf2c6bb7f8 (diff) | |
download | scummvm-rg350-fdc3baeeff72e0d2313c9015ca1e3ab187456c9e.tar.gz scummvm-rg350-fdc3baeeff72e0d2313c9015ca1e3ab187456c9e.tar.bz2 scummvm-rg350-fdc3baeeff72e0d2313c9015ca1e3ab187456c9e.zip |
CRYO: Move unrelated Common::File include out of platdefs.h
-rw-r--r-- | engines/cryo/eden.h | 2 | ||||
-rw-r--r-- | engines/cryo/platdefs.h | 5 |
2 files changed, 2 insertions, 5 deletions
diff --git a/engines/cryo/eden.h b/engines/cryo/eden.h index a470a566be..b6d8f25485 100644 --- a/engines/cryo/eden.h +++ b/engines/cryo/eden.h @@ -23,6 +23,8 @@ #ifndef CRYO_EDEN_H #define CRYO_EDEN_H +#include "common/file.h" + #include "cryo/sound.h" #include "cryo/defs.h" diff --git a/engines/cryo/platdefs.h b/engines/cryo/platdefs.h index 81329fb190..69f8e625ea 100644 --- a/engines/cryo/platdefs.h +++ b/engines/cryo/platdefs.h @@ -23,9 +23,6 @@ #ifndef CRYO_PLATDEFS_H #define CRYO_PLATDEFS_H -#if 1 -#include "common/file.h" - namespace Cryo { #if 1 @@ -41,8 +38,6 @@ const int _spaceWidth = 4; const int _subtitlesXWidth = (320 - _subtitlesXMargin * 2); const int _subtitlesXCenter = _subtitlesXWidth / 2; -#endif - } // End of namespace Cryo #endif |