diff options
author | Eugene Sandulenko | 2019-12-23 23:13:02 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2019-12-24 00:19:27 +0100 |
commit | b21b29a2f60b17c59792f04144776f7c85c5a8a9 (patch) | |
tree | e74b524e2bfd4f80bb45675b4453849526e4dc3e /engines/director/archive.cpp | |
parent | 649e7a0c28c2b49c5c0002b2f1b383499fbf169b (diff) | |
download | scummvm-rg350-b21b29a2f60b17c59792f04144776f7c85c5a8a9.tar.gz scummvm-rg350-b21b29a2f60b17c59792f04144776f7c85c5a8a9.tar.bz2 scummvm-rg350-b21b29a2f60b17c59792f04144776f7c85c5a8a9.zip |
DIRECTOR: Further simplification of include dependencies
Diffstat (limited to 'engines/director/archive.cpp')
-rw-r--r-- | engines/director/archive.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/engines/director/archive.cpp b/engines/director/archive.cpp index bbcf26bef5..7352793763 100644 --- a/engines/director/archive.cpp +++ b/engines/director/archive.cpp @@ -23,7 +23,6 @@ #include "director/archive.h" #include "director/director.h" -#include "common/debug.h" #include "common/macresman.h" namespace Director { @@ -357,8 +356,8 @@ bool RIFXArchive::openStream(Common::SeekableReadStream *stream, uint32 startOff uint32 rifxType = subStream.readUint32(); - if (rifxType != MKTAG('M', 'V', '9', '3') && - rifxType != MKTAG('A', 'P', 'P', 'L') && + if (rifxType != MKTAG('M', 'V', '9', '3') && + rifxType != MKTAG('A', 'P', 'P', 'L') && rifxType != MKTAG('M', 'C', '9', '5')) return false; |