From 077b924899bb992957131eaf14409e306e08fab9 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Wed, 4 Apr 2007 13:01:09 +0000 Subject: Copy protection bypass applies to all versions of Monkey Island VGA. svn-id: r26380 --- engines/scumm/script_v5.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'engines/scumm/script_v5.cpp') diff --git a/engines/scumm/script_v5.cpp b/engines/scumm/script_v5.cpp index 931d76041f..2c562f0470 100644 --- a/engines/scumm/script_v5.cpp +++ b/engines/scumm/script_v5.cpp @@ -2349,8 +2349,9 @@ void ScummEngine_v5::o5_startScript() { // 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) -- cgit v1.2.3