diff options
author | Eugene Sandulenko | 2014-02-15 12:38:32 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2014-02-15 12:38:32 +0200 |
commit | 0d62136b418c21261ecbd6a896b9d5f4d41831d5 (patch) | |
tree | 5e59842f4d6097ca971dfa1a926448f2fd1d9ec9 /engines/fullpipe | |
parent | f86589939a4e1de56585ce460603c86499a1719b (diff) | |
download | scummvm-rg350-0d62136b418c21261ecbd6a896b9d5f4d41831d5.tar.gz scummvm-rg350-0d62136b418c21261ecbd6a896b9d5f4d41831d5.tar.bz2 scummvm-rg350-0d62136b418c21261ecbd6a896b9d5f4d41831d5.zip |
FULLPIPE: Implement sceneHandler09_startAuntie()
Diffstat (limited to 'engines/fullpipe')
-rw-r--r-- | engines/fullpipe/constants.h | 1 | ||||
-rw-r--r-- | engines/fullpipe/scenes/scene09.cpp | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/engines/fullpipe/constants.h b/engines/fullpipe/constants.h index 7afd3ea455..bae0a2d799 100644 --- a/engines/fullpipe/constants.h +++ b/engines/fullpipe/constants.h @@ -603,6 +603,7 @@ namespace Fullpipe { #define MV_MAN9_SHOOT 922 #define MV_VSN_CYCLE2 2987 #define PIC_SC9_LADDER_R 2700 +#define QU_TTA9_GOL 4937 #define SND_9_006 3650 #define SND_9_018 4200 #define ST_GLT_SIT 926 diff --git a/engines/fullpipe/scenes/scene09.cpp b/engines/fullpipe/scenes/scene09.cpp index a33fe11cfc..6752864962 100644 --- a/engines/fullpipe/scenes/scene09.cpp +++ b/engines/fullpipe/scenes/scene09.cpp @@ -253,7 +253,10 @@ void sceneHandler09_winArcade() { } void sceneHandler09_startAuntie() { - warning("STUB: sceneHandler09_startAuntie()"); + MessageQueue *mq = new MessageQueue(g_fp->_currentScene->getMessageQueueById(QU_TTA9_GOL), 0, 1); + + mq->getExCommandByIndex(0)->_x = g_fp->_sceneRect.right + 30; + mq->chain(0); } void sceneHandler09_spitterClick() { |