Skip to content

Commit

Permalink
FULLPIPE: Implement sceneHandler33_processJettie()
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Jan 9, 2014
1 parent 5114398 commit 692b199
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion engines/fullpipe/scenes/scene33.cpp
Expand Up @@ -80,7 +80,23 @@ int scene33_updateCursor() {
}

void sceneHandler33_processJettie(ExCommand *cmd) {
warning("STUB: sceneHandler33_processJettie(cmd");
MessageQueue *mq = g_fp->_globalMessageQueueList->getMessageQueueById(cmd->_parId);

if (mq && g_vars->scene33_jettie->_movement) {
ExCommand *ex = mq->getExCommandByIndex(0);

if (ex) {
ex->_messageKind = 0;
ex->_excFlags |= 1;
}

ex = mq->getExCommandByIndex(1);

if (ex) {
ex->_messageKind = 0;
ex->_excFlags |= 1;
}
}
}

void sceneHandler33_processVents() {
Expand Down

0 comments on commit 692b199

Please sign in to comment.