aboutsummaryrefslogtreecommitdiff
path: root/scumm/script.cpp
diff options
context:
space:
mode:
authorMax Horn2003-04-28 16:57:53 +0000
committerMax Horn2003-04-28 16:57:53 +0000
commitf99f7f3d504630bd7755f9a97be4516be3645492 (patch)
tree63b882e00bd9e6e931aa0a879267cbc50389835d /scumm/script.cpp
parent33911c29dfb3fdc8920bcdf1aef19a67d2b868ef (diff)
downloadscummvm-rg350-f99f7f3d504630bd7755f9a97be4516be3645492.tar.gz
scummvm-rg350-f99f7f3d504630bd7755f9a97be4516be3645492.tar.bz2
scummvm-rg350-f99f7f3d504630bd7755f9a97be4516be3645492.zip
hack to get Indydemo to work
svn-id: r7183
Diffstat (limited to 'scumm/script.cpp')
-rw-r--r--scumm/script.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/scumm/script.cpp b/scumm/script.cpp
index 9cbde710bc..cfe6efecf4 100644
--- a/scumm/script.cpp
+++ b/scumm/script.cpp
@@ -752,11 +752,12 @@ void Scumm::killScriptsAndResources() {
for (i = 1; i < NUM_SCRIPT_SLOT; i++, ss++) {
if (ss->where == WIO_ROOM || ss->where == WIO_FLOBJECT) {
- if (ss->cutsceneOverride)
+ if (ss->cutsceneOverride != 0)
error("Object %d stopped with active cutscene/override in exit", ss->number);
ss->status = ssDead;
} else if (ss->where == WIO_LOCAL) {
- if (ss->cutsceneOverride)
+ // HACK to make Indy3 Demo work
+ if (ss->cutsceneOverride != 0 && !(_gameId == GID_INDY3 && _roomResource == 3))
error("Script %d stopped with active cutscene/override in exit", ss->number);
ss->status = ssDead;
}