diff options
author | Travis Howell | 2005-04-21 10:24:13 +0000 |
---|---|---|
committer | Travis Howell | 2005-04-21 10:24:13 +0000 |
commit | dd046c184e03feb0d513acf45495d63b595997c0 (patch) | |
tree | 1557e782c6edfe4a1f38feede63ad0c8db5010f3 | |
parent | cca9fb4804a910f3fe92c48328c825a924ef65f8 (diff) | |
download | scummvm-rg350-dd046c184e03feb0d513acf45495d63b595997c0.tar.gz scummvm-rg350-dd046c184e03feb0d513acf45495d63b595997c0.tar.bz2 scummvm-rg350-dd046c184e03feb0d513acf45495d63b595997c0.zip |
There are Macintosh specific versions of HE72 games.
svn-id: r17733
-rw-r--r-- | scumm/script_v72he.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp index b496252c73..0c5f7d3ee7 100644 --- a/scumm/script_v72he.cpp +++ b/scumm/script_v72he.cpp @@ -1678,7 +1678,8 @@ void ScummEngine_v72he::o72_openFile() { debug(0,"Original filename %s", filename); - if (_substResFileNameIndex > 0) { + // There are Macintosh specific versions of HE7.2 games. + if (_heversion >= 80 && _substResFileNameIndex > 0) { char buf1[128]; generateSubstResFileName((char *)filename, buf1, sizeof(buf1)); |