diff options
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) |