aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2014-03-10 23:05:58 +0200
committerEugene Sandulenko2014-03-10 23:19:16 +0200
commit503b582932cd40aeb219dc81ee2c0aa5d810f281 (patch)
tree366c6ed14cb83267f046fbbb2bb0f041ce25e69c
parentf2a0d591fdb72e3e5c615e44a6165c5524b67a16 (diff)
downloadscummvm-rg350-503b582932cd40aeb219dc81ee2c0aa5d810f281.tar.gz
scummvm-rg350-503b582932cd40aeb219dc81ee2c0aa5d810f281.tar.bz2
scummvm-rg350-503b582932cd40aeb219dc81ee2c0aa5d810f281.zip
FULLPIPE: Implement sceneHandler18and19_girlJumpTo()
-rw-r--r--engines/fullpipe/constants.h1
-rw-r--r--engines/fullpipe/scenes/scene18and19.cpp5
2 files changed, 5 insertions, 1 deletions
diff --git a/engines/fullpipe/constants.h b/engines/fullpipe/constants.h
index 64f528a667..43807d7839 100644
--- a/engines/fullpipe/constants.h
+++ b/engines/fullpipe/constants.h
@@ -888,6 +888,7 @@ namespace Fullpipe {
#define MSG_SC18_SHOWMANJUMP 1510
#define MSG_SC18_SHOWMANJUMPTO 1508
#define MV_BOY18_JUMPTO 1481
+#define MV_GRL18_JUMPTO 1488
#define MV_KSL_INBOY 1491
#define MV_KSL_INGIRL 1493
#define MV_KSL_INMAN 1504
diff --git a/engines/fullpipe/scenes/scene18and19.cpp b/engines/fullpipe/scenes/scene18and19.cpp
index 9cecc3b653..7c7a70bd11 100644
--- a/engines/fullpipe/scenes/scene18and19.cpp
+++ b/engines/fullpipe/scenes/scene18and19.cpp
@@ -452,7 +452,10 @@ void sceneHandler18and19_boyJumpTo() {
}
void sceneHandler18and19_girlJumpTo() {
- warning("STUB: sceneHandler18and19_girlJumpTo()");
+ g_vars->scene18_girl->stopAnim_maybe();
+ g_vars->scene18_girl->show1(g_vars->scene18_var05, g_vars->scene18_var06, MV_GRL18_JUMPTO, 0);
+ g_vars->scene18_girl->_priority = 50;
+ g_vars->scene18_girl->startAnim(MV_GRL18_JUMPTO, 0, -1);
}
void sceneHandler18and19_manStandArmchair() {