aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v2.cpp
diff options
context:
space:
mode:
authorTravis Howell2003-10-29 10:24:03 +0000
committerTravis Howell2003-10-29 10:24:03 +0000
commit2a113835234c316b91846d308eef9cc0fe2d3f72 (patch)
tree916afb4170307cad02397096aaa008eea24f85d3 /scumm/script_v2.cpp
parent774b847a8754ef3af400631ae9544332b76d85ed (diff)
downloadscummvm-rg350-2a113835234c316b91846d308eef9cc0fe2d3f72.tar.gz
scummvm-rg350-2a113835234c316b91846d308eef9cc0fe2d3f72.tar.bz2
scummvm-rg350-2a113835234c316b91846d308eef9cc0fe2d3f72.zip
Hopefully right this time, last change caused a cheat (Free air travel)
svn-id: r11003
Diffstat (limited to 'scumm/script_v2.cpp')
-rw-r--r--scumm/script_v2.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/scumm/script_v2.cpp b/scumm/script_v2.cpp
index 8a5f638ac2..7a1e5e51ae 100644
--- a/scumm/script_v2.cpp
+++ b/scumm/script_v2.cpp
@@ -428,25 +428,12 @@ void ScummEngine_v2::decodeParseString() {
actorTalk();
}
-#ifndef BYPASS_COPY_PROT
-#define BYPASS_COPY_PROT
-#endif
-
int ScummEngine_v2::readVar(uint var) {
if (var >= 14 && var <= 16)
var = _scummVars[var];
checkRange(_numVariables - 1, 0, var, "Variable %d out of range(r)");
debug(6, "readvar(%d) = %d", var, _scummVars[var]);
-
-#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.
- if (_gameId == GID_ZAK && var == 244)
- return 0;
-#endif
-
return _scummVars[var];
}