[Scummvm-cvs-logs] SF.net SVN: scummvm: [26380] scummvm/trunk/engines/scumm/script_v5.cpp

kirben at users.sourceforge.net kirben at users.sourceforge.net
Wed Apr 4 15:01:09 CEST 2007


Revision: 26380
          http://scummvm.svn.sourceforge.net/scummvm/?rev=26380&view=rev
Author:   kirben
Date:     2007-04-04 06:01:09 -0700 (Wed, 04 Apr 2007)

Log Message:
-----------
Copy protection bypass applies to all versions of Monkey Island VGA.

Modified Paths:
--------------
    scummvm/trunk/engines/scumm/script_v5.cpp

Modified: scummvm/trunk/engines/scumm/script_v5.cpp
===================================================================
--- scummvm/trunk/engines/scumm/script_v5.cpp	2007-04-03 22:03:21 UTC (rev 26379)
+++ scummvm/trunk/engines/scumm/script_v5.cpp	2007-04-04 13:01:09 UTC (rev 26380)
@@ -2349,8 +2349,9 @@
 		// Copy protection was disabled in LucasArts Classic Adventures (PC Disk)
 		if (_game.id == GID_LOOM && _game.platform == Common::kPlatformPC && _game.version == 3 && _currentRoom == 69 && script == 201)
 			script = 205;
-		// Copy protection was disabled in LucasArts Classic Adventures (PC Disk)
-		if (_game.id == GID_MONKEY_VGA && _game.platform == Common::kPlatformPC && script == 152)
+		// Copy protection was disabled in KIXX XL release (Amiga Disk) and
+		// in LucasArts Classic Adventures (PC Disk)
+		if (_game.id == GID_MONKEY_VGA && script == 152)
 			return;
 		// Copy protection was disabled in LucasArts Mac CD Game Pack II (Macintosh CD)
 		if (_game.id == GID_MONKEY && _game.platform == Common::kPlatformMacintosh && script == 155)


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