[Scummvm-cvs-logs] scummvm master -> 0d62136b418c21261ecbd6a896b9d5f4d41831d5

sev- sev at scummvm.org
Sat Feb 15 11:37:33 CET 2014


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
0d62136b41 FULLPIPE: Implement sceneHandler09_startAuntie()


Commit: 0d62136b418c21261ecbd6a896b9d5f4d41831d5
    https://github.com/scummvm/scummvm/commit/0d62136b418c21261ecbd6a896b9d5f4d41831d5
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2014-02-15T02:38:32-08:00

Commit Message:
FULLPIPE: Implement sceneHandler09_startAuntie()

Changed paths:
    engines/fullpipe/constants.h
    engines/fullpipe/scenes/scene09.cpp



diff --git a/engines/fullpipe/constants.h b/engines/fullpipe/constants.h
index 7afd3ea..bae0a2d 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 a33fe11..6752864 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() {






More information about the Scummvm-git-logs mailing list