mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-24 21:21:05 +00:00
Fix regression in Commodore 64 version of Zak McKracken.
svn-id: r25959
This commit is contained in:
parent
d1d5579549
commit
41136e552f
@ -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…
x
Reference in New Issue
Block a user