aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v2.cpp
diff options
context:
space:
mode:
authorTravis Howell2003-11-26 08:58:00 +0000
committerTravis Howell2003-11-26 08:58:00 +0000
commit71ddb90f84afb9cef382c852d3e34c3852603454 (patch)
tree3404b7286d0396bab05404836fcd173bba2ad7c9 /scumm/script_v2.cpp
parent4b797730cdd5deb70334f0dafe98f8a3fda7251f (diff)
downloadscummvm-rg350-71ddb90f84afb9cef382c852d3e34c3852603454.tar.gz
scummvm-rg350-71ddb90f84afb9cef382c852d3e34c3852603454.tar.bz2
scummvm-rg350-71ddb90f84afb9cef382c852d3e34c3852603454.zip
Update commeny
svn-id: r11369
Diffstat (limited to 'scumm/script_v2.cpp')
-rw-r--r--scumm/script_v2.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/scumm/script_v2.cpp b/scumm/script_v2.cpp
index 6709fe6e72..613b57ada9 100644
--- a/scumm/script_v2.cpp
+++ b/scumm/script_v2.cpp
@@ -1105,12 +1105,13 @@ void ScummEngine_v2::o2_startScript() {
int script = getVarOrDirectByte(PARAM_1);
#if defined(BYPASS_COPY_PROT)
- // The Enchanced version of Zak McKracken included in the
- // SelectWare Classic Collection bundle has no copy protection
- // and doesn't include the codes.
+ // The enhanced version of Zak McKracken included in the
+ // SelectWare Classic Collection bundle used CD check instead
+ // of the usual key code check at airports.
if ((_gameId == GID_ZAK) && (script == 15) && (_roomResource == 45))
return;
#endif
+
runScript(script, 0, 0, 0);
}