diff options
author | Paul Gilbert | 2009-06-01 10:17:34 +0000 |
---|---|---|
committer | Paul Gilbert | 2009-06-01 10:17:34 +0000 |
commit | 18f5ef823452d4a1f4b00961504c04d41c7abe82 (patch) | |
tree | 018a51378e9b9c0a4416fd704fe8bed22f650f62 | |
parent | b81270fbc0a10da9f4c88dee5c208e745e49b565 (diff) | |
download | scummvm-rg350-18f5ef823452d4a1f4b00961504c04d41c7abe82.tar.gz scummvm-rg350-18f5ef823452d4a1f4b00961504c04d41c7abe82.tar.bz2 scummvm-rg350-18f5ef823452d4a1f4b00961504c04d41c7abe82.zip |
Disabled an old script interpreter hack
svn-id: r41099
-rw-r--r-- | engines/cruise/script.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/cruise/script.cpp b/engines/cruise/script.cpp index c08c9d267f..9f89f04069 100644 --- a/engines/cruise/script.cpp +++ b/engines/cruise/script.cpp @@ -623,11 +623,13 @@ int executeScripts(scriptInstanceStruct *ptr) { positionInStack = 0; do { +#ifdef SKIP_INTRO if (currentScriptPtr->scriptOffset == 290 && currentScriptPtr->overlayNumber == 4 && currentScriptPtr->scriptNumber == 0) { currentScriptPtr->scriptOffset = 923; } +#endif opcodeType = getByteFromScript(); // printf("opType: %d\n",(opcodeType&0xFB)>>3); |