diff options
author | athrxx | 2011-11-25 23:23:16 +0100 |
---|---|---|
committer | Johannes Schickel | 2011-12-26 16:18:15 +0100 |
commit | 49c111f8ca4a822ce98c81a9162899d3d1e4e6b2 (patch) | |
tree | 4b2250e433115a15d4c08d73197a16021c61dc90 | |
parent | 5837e0f94ea7abf67ecd618fb641eec98231ebcb (diff) | |
download | scummvm-rg350-49c111f8ca4a822ce98c81a9162899d3d1e4e6b2.tar.gz scummvm-rg350-49c111f8ca4a822ce98c81a9162899d3d1e4e6b2.tar.bz2 scummvm-rg350-49c111f8ca4a822ce98c81a9162899d3d1e4e6b2.zip |
KYRA: (EOB) - ignore 'EYE.PAK' file in resource loader
(This seems to be some sort of installer archive which is not supported atm)
-rw-r--r-- | engines/kyra/resource.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/resource.cpp b/engines/kyra/resource.cpp index 3aaab07c0d..e1b72275c3 100644 --- a/engines/kyra/resource.cpp +++ b/engines/kyra/resource.cpp @@ -84,7 +84,7 @@ bool Resource::reset() { name.toUppercase(); // No PAK file - if (name == "TWMUSIC.PAK") + if (name == "TWMUSIC.PAK" || name == "EYE.PAK") continue; // We need to only load the script archive for the language the user specified |