Skip to content

Commit

Permalink
KYRA: (EOB) - ignore 'EYE.PAK' file in resource loader
Browse files Browse the repository at this point in the history
(This seems to be some sort of installer archive which is not supported atm)
  • Loading branch information
athrxx authored and Johannes Schickel committed Dec 26, 2011
1 parent 5837e0f commit 49c111f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/kyra/resource.cpp
Expand Up @@ -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
Expand Down

0 comments on commit 49c111f

Please sign in to comment.