aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/scenes.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2013-09-01 01:41:26 +0300
committerEugene Sandulenko2013-09-06 14:51:22 +0300
commit9abf4f6f890ae8b93c940e8191f5461e500a1c6a (patch)
treed46dad2d2742319d171f27825820d57719ba002e /engines/fullpipe/scenes.cpp
parentd6309755fc8b67e2ade20008e6f9d1fc911095c9 (diff)
downloadscummvm-rg350-9abf4f6f890ae8b93c940e8191f5461e500a1c6a.tar.gz
scummvm-rg350-9abf4f6f890ae8b93c940e8191f5461e500a1c6a.tar.bz2
scummvm-rg350-9abf4f6f890ae8b93c940e8191f5461e500a1c6a.zip
FULLPIPE: Added more debug output
Diffstat (limited to 'engines/fullpipe/scenes.cpp')
-rw-r--r--engines/fullpipe/scenes.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/engines/fullpipe/scenes.cpp b/engines/fullpipe/scenes.cpp
index 9054c4c7a7..4f2f7c34d1 100644
--- a/engines/fullpipe/scenes.cpp
+++ b/engines/fullpipe/scenes.cpp
@@ -667,6 +667,8 @@ void global_messageHandler_KickMetal() {
}
int global_messageHandler1(ExCommand *cmd) {
+ debug(0, "global_messageHandler1: %d %d", cmd->_messageKind, cmd->_messageNum);
+
if (cmd->_excFlags & 0x10000) {
if (cmd->_messageNum == MV_MAN_TOLADDER)
cmd->_messageNum = MV_MAN_TOLADDER2;
@@ -837,8 +839,6 @@ void staticANIObjectCallback(int *arg) {
}
int global_messageHandler2(ExCommand *cmd) {
- debug(0, "global_messageHandler2()");
-
if (cmd->_messageKind != 17)
return 0;
@@ -1082,7 +1082,6 @@ int global_messageHandler3(ExCommand *cmd) {
int global_messageHandler4(ExCommand *cmd) {
StaticANIObject *ani = 0;
- debug(0, "global_messageHandler4: %d %d", cmd->_messageKind, cmd->_messageNum);
switch (cmd->_messageKind) {
case 18: {
MessageQueue *mq = new MessageQueue(g_fullpipe->_currentScene->getMessageQueueById(cmd->_messageNum), cmd->_parId, 0);