[Scummvm-cvs-logs] SF.net SVN: scummvm: [25959] scummvm/trunk/engines/scumm/plugin.cpp
kirben at users.sourceforge.net
kirben at users.sourceforge.net
Sun Mar 4 02:04:32 CET 2007
Revision: 25959
http://scummvm.svn.sourceforge.net/scummvm/?rev=25959&view=rev
Author: kirben
Date: 2007-03-03 17:04:31 -0800 (Sat, 03 Mar 2007)
Log Message:
-----------
Fix regression in Commodore 64 version of Zak McKracken.
Modified Paths:
--------------
scummvm/trunk/engines/scumm/plugin.cpp
Modified: scummvm/trunk/engines/scumm/plugin.cpp
===================================================================
--- scummvm/trunk/engines/scumm/plugin.cpp 2007-03-04 00:44:04 UTC (rev 25958)
+++ scummvm/trunk/engines/scumm/plugin.cpp 2007-03-04 01:04:31 UTC (rev 25959)
@@ -1262,7 +1262,8 @@
// 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
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list