diff options
author | Travis Howell | 2007-04-04 13:01:09 +0000 |
---|---|---|
committer | Travis Howell | 2007-04-04 13:01:09 +0000 |
commit | 077b924899bb992957131eaf14409e306e08fab9 (patch) | |
tree | 34d6ca0717402361d51786943d45d8d9b4d47825 /engines | |
parent | e3c25e6d203d22405ed406cd063b28a1aae11074 (diff) | |
download | scummvm-rg350-077b924899bb992957131eaf14409e306e08fab9.tar.gz scummvm-rg350-077b924899bb992957131eaf14409e306e08fab9.tar.bz2 scummvm-rg350-077b924899bb992957131eaf14409e306e08fab9.zip |
Copy protection bypass applies to all versions of Monkey Island VGA.
svn-id: r26380
Diffstat (limited to 'engines')
-rw-r--r-- | engines/scumm/script_v5.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
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) |