[Scummvm-cvs-logs] CVS: scummvm/scumm script.cpp,1.62,1.63
Travis Howell
kirben at users.sourceforge.net
Fri Apr 25 02:17:13 CEST 2003
Update of /cvsroot/scummvm/scummvm/scumm
In directory sc8-pr-cvs1:/tmp/cvs-serv26422/scumm
Modified Files:
script.cpp
Log Message:
Add patch #727309 - EGA LOOM: Bypassing the copy protection
Index: script.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/scumm/script.cpp,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -d -r1.62 -r1.63
--- script.cpp 24 Apr 2003 23:56:47 -0000 1.62
+++ script.cpp 25 Apr 2003 09:16:33 -0000 1.63
@@ -379,6 +379,9 @@
// INDY3 checks this during the game...
if (var == 94 && _gameId == GID_INDY3 && b == 4) {
return 0;
+ } else if (var == 214 && b == 15 && _gameId == GID_LOOM && !copyprotbypassed) {
+ copyprotbypassed = true;
+ return 0;
} else
#endif
return (_vars[ var ] & ( 1 << b ) ) ? 1 : 0;
More information about the Scummvm-git-logs
mailing list