Fix regression in Commodore 64 version of Zak McKracken.
svn-id: r25959
This commit is contained in:
parent
d1d5579549
commit
41136e552f
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue