aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2004-07-23 09:30:53 +0000
committerTravis Howell2004-07-23 09:30:53 +0000
commit0afb8635cb58e919748e411b00d2ba54f4901a82 (patch)
treec715b3e86e6f42484ad0617bf2b607666a06829e /scumm
parent840248a9726265571fae07350556c0b60ca75a5f (diff)
downloadscummvm-rg350-0afb8635cb58e919748e411b00d2ba54f4901a82.tar.gz
scummvm-rg350-0afb8635cb58e919748e411b00d2ba54f4901a82.tar.bz2
scummvm-rg350-0afb8635cb58e919748e411b00d2ba54f4901a82.zip
Add more details
svn-id: r14305
Diffstat (limited to 'scumm')
-rw-r--r--scumm/script_v5.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp
index 8ba453a4a9..b542f3d1ec 100644
--- a/scumm/script_v5.cpp
+++ b/scumm/script_v5.cpp
@@ -2200,9 +2200,11 @@ void ScummEngine_v5::o5_startScript() {
getWordVararg(data);
- // Method used by original Loom to skip copy protection scheme
+ // Method used by original games to skip copy protection scheme
//if (_gameId == GID_LOOM && _currentRoom == 69 && script == 201)
// script = 205;
+ //else if ((_gameId == GID_MONKEY_VGA || _gameId == GID_MONKEY_EGA) && script == 152)
+ // return;
runScript(script, (op & 0x20) != 0, (op & 0x40) != 0, data);
}