aboutsummaryrefslogtreecommitdiff
path: root/engines/illusions/duckman/duckman_specialcode.cpp
diff options
context:
space:
mode:
authorEric Fry2018-05-25 21:51:21 +1000
committerEugene Sandulenko2018-07-20 06:43:33 +0000
commitbdc477bef9d4ec9691e77c4de867a30d08865c46 (patch)
tree6f32addc60b63768cede07d53aad234a73e5a694 /engines/illusions/duckman/duckman_specialcode.cpp
parent7c46d891c6acc414e69c5cf624f45b7b297fe584 (diff)
downloadscummvm-rg350-bdc477bef9d4ec9691e77c4de867a30d08865c46.tar.gz
scummvm-rg350-bdc477bef9d4ec9691e77c4de867a30d08865c46.tar.bz2
scummvm-rg350-bdc477bef9d4ec9691e77c4de867a30d08865c46.zip
ILLUSIONS: Implement convertPanXCoord() to support audio panning.
Wire up startScriptThread2() calls. Add namedpoint logic.
Diffstat (limited to 'engines/illusions/duckman/duckman_specialcode.cpp')
-rw-r--r--engines/illusions/duckman/duckman_specialcode.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/illusions/duckman/duckman_specialcode.cpp b/engines/illusions/duckman/duckman_specialcode.cpp
index d53896d6ac..60e05052c0 100644
--- a/engines/illusions/duckman/duckman_specialcode.cpp
+++ b/engines/illusions/duckman/duckman_specialcode.cpp
@@ -103,6 +103,7 @@ void DuckmanSpecialCode::run(uint32 specialCodeId, OpCall &opCall) {
} else {
debug("DuckmanSpecialCode::run() Unimplemented special code %08X", specialCodeId);
_vm->notifyThreadId(opCall._threadId);
+ error("DuckmanSpecialCode::run() Unimplemented special code");
}
}
@@ -392,7 +393,7 @@ void DuckmanSpecialCode::updateTeleporterProperties() {
_vm->_scriptResource->_properties.set(0x000E0075, _teleporterPosition.x == 4 && _teleporterPosition.y == 3);
_vm->_scriptResource->_properties.set(0x000E0076, _teleporterPosition.x == 3 && _teleporterPosition.y == 3);
_vm->_scriptResource->_properties.set(0x000E0077, _teleporterPosition.x == 2 && _teleporterPosition.y == 2);
- _vm->_scriptResource->_properties.set(0x000E0078, _teleporterPosition.x == 1 && _teleporterPosition.y == 1);
+ _vm->_scriptResource->_properties.set(0x000E0078, _teleporterPosition.x == 1 && _teleporterPosition.y == 1);
}
} // End of namespace Illusions