diff options
author | Jonathan Gray | 2003-04-24 15:59:41 +0000 |
---|---|---|
committer | Jonathan Gray | 2003-04-24 15:59:41 +0000 |
commit | 2ba6881a1080d6cfc0f8cca8381298e4dff0fd38 (patch) | |
tree | 4bb9a832e42fa697fc3cb0aec39f859322ab8263 /scumm | |
parent | 0e4c195b7c324cddb9c288a979a2aae6a873f135 (diff) | |
download | scummvm-rg350-2ba6881a1080d6cfc0f8cca8381298e4dff0fd38.tar.gz scummvm-rg350-2ba6881a1080d6cfc0f8cca8381298e4dff0fd38.tar.bz2 scummvm-rg350-2ba6881a1080d6cfc0f8cca8381298e4dff0fd38.zip |
correction
svn-id: r7095
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/script.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/script.cpp b/scumm/script.cpp index 3e810e7296..ef3e7d4137 100644 --- a/scumm/script.cpp +++ b/scumm/script.cpp @@ -376,8 +376,8 @@ int Scumm::readVar(uint var) { var >>= 4; checkRange(_numVariables - 1, 0, var, "Variable %d out of range(rzb)"); #if defined(BYPASS_COPY_PROT) - if (var == 94 && _gameId == GID_INDY3 && !copyprotbypassed) { - copyprotbypassed = true; + // INDY3 checks this during the game... + if (var == 94 && _gameId == GID_INDY3) { return 0; } else #endif |