diff options
author | Travis Howell | 2007-03-04 01:04:31 +0000 |
---|---|---|
committer | Travis Howell | 2007-03-04 01:04:31 +0000 |
commit | 41136e552f29de5d6950a93cee9fd7eb1352ea94 (patch) | |
tree | 23ef167ff2d6ea9c8346241db75be290ddf41a2d /engines | |
parent | d1d55795497e58c2d693c278dab40d42038a72e5 (diff) | |
download | scummvm-rg350-41136e552f29de5d6950a93cee9fd7eb1352ea94.tar.gz scummvm-rg350-41136e552f29de5d6950a93cee9fd7eb1352ea94.tar.bz2 scummvm-rg350-41136e552f29de5d6950a93cee9fd7eb1352ea94.zip |
Fix regression in Commodore 64 version of Zak McKracken.
svn-id: r25959
Diffstat (limited to 'engines')
-rw-r--r-- | engines/scumm/plugin.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/scumm/plugin.cpp b/engines/scumm/plugin.cpp index d9c4e3a4dd..43abca660a 100644 --- a/engines/scumm/plugin.cpp +++ b/engines/scumm/plugin.cpp @@ -1262,7 +1262,8 @@ static bool testGame(const GameSettings *g, const DescMap &fileMD5Map, const Com // perfect match return true; } - } else if (buf[0] == 0xCE && buf[1] == 0xF5) { + } else if ((buf[0] == 0xCE && buf[1] == 0xF5) || // PC + (buf[0] == 0xCD && buf[1] == 0xFE)) { // Commodore 64 // Looks like V1. // Candidates: maniac classic, zak classic |