diff options
author | D G Turner | 2011-02-22 07:17:22 +0000 |
---|---|---|
committer | D G Turner | 2011-02-22 07:17:22 +0000 |
commit | 07c054d6c63bec5a9abd1b77781958f4a83969bc (patch) | |
tree | 390cefc95122bc9a59e23b1634bc69c1bae7e3c0 | |
parent | 6db22dde64ca00c31d99c20790063f9ba782552d (diff) | |
download | scummvm-rg350-07c054d6c63bec5a9abd1b77781958f4a83969bc.tar.gz scummvm-rg350-07c054d6c63bec5a9abd1b77781958f4a83969bc.tar.bz2 scummvm-rg350-07c054d6c63bec5a9abd1b77781958f4a83969bc.zip |
CRUISE: Reinstate Copy Protection errorneously disabled in r51834.
r51834 (f4d38ccd407f2a007050d69e4841ba7fc53cd401) was a commit to add
English Floppy version of LoL to Kyra, but a file was accidently
committed to Cruise as a sideffect.
-rw-r--r-- | engines/cruise/script.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cruise/script.cpp b/engines/cruise/script.cpp index 317dcfbbe6..aae4dba475 100644 --- a/engines/cruise/script.cpp +++ b/engines/cruise/script.cpp @@ -619,13 +619,13 @@ int executeScripts(scriptInstanceStruct *ptr) { positionInStack = 0; do { -//#ifdef SKIP_INTRO +#ifdef SKIP_INTRO if (currentScriptPtr->scriptOffset == 290 && currentScriptPtr->overlayNumber == 4 && currentScriptPtr->scriptNumber == 0) { currentScriptPtr->scriptOffset = 923; } -//#endif +#endif opcodeType = getByteFromScript(); debugC(5, kCruiseDebugScript, "Script %s/%d ip=%d opcode=%d", |