aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/scenes
diff options
context:
space:
mode:
authorEugene Sandulenko2016-09-14 18:52:58 +0200
committerEugene Sandulenko2016-09-14 18:52:58 +0200
commit028576cdc82933e1112bb68ea52eee6908fafccf (patch)
tree0d92e2d3bb2d9ac252aee432c37aa9b109e7e259 /engines/fullpipe/scenes
parentaf286d86fae92b6465d665dae8939afa313fc399 (diff)
downloadscummvm-rg350-028576cdc82933e1112bb68ea52eee6908fafccf.tar.gz
scummvm-rg350-028576cdc82933e1112bb68ea52eee6908fafccf.tar.bz2
scummvm-rg350-028576cdc82933e1112bb68ea52eee6908fafccf.zip
FULLPIPE: Added more debug tracing to scene29
Diffstat (limited to 'engines/fullpipe/scenes')
-rw-r--r--engines/fullpipe/scenes/scene29.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/fullpipe/scenes/scene29.cpp b/engines/fullpipe/scenes/scene29.cpp
index f77af6f438..2e95deb6ea 100644
--- a/engines/fullpipe/scenes/scene29.cpp
+++ b/engines/fullpipe/scenes/scene29.cpp
@@ -686,6 +686,8 @@ int sceneHandler29(ExCommand *cmd) {
case MSG_SC29_SHOWLASTRED:
if (g_vars->scene29_redBalls.size()) { // original checks size of the scene29_greenBalls which looks like a copy/paste error
+ debugC(2, kDebugSceneLogic, "scene29: showLastRed");
+
g_vars->scene29_redBalls.back()->show1(-1, -1, -1, 0);
g_vars->scene29_redBalls.back()->startAnim(MV_SHR_HITASS, 0, -1);
}
@@ -702,6 +704,8 @@ int sceneHandler29(ExCommand *cmd) {
case MSG_SC29_SHOWLASTGREEN:
if (g_vars->scene29_greenBalls.size()) {
+ debugC(2, kDebugSceneLogic, "scene29: showLastGreen");
+
g_vars->scene29_greenBalls.back()->show1(-1, -1, -1, 0);
g_vars->scene29_greenBalls.back()->startAnim(MV_SHG_HITASS, 0, -1);
}
@@ -714,6 +718,8 @@ int sceneHandler29(ExCommand *cmd) {
g_vars->scene29_reachedFarRight = false;
g_vars->scene29_rideBackEnabled = false;
+ debugC(2, kDebugSceneLogic, "scene29: stopRide");
+
getCurrSceneSc2MotionController()->activate();
getGameLoaderInteractionController()->enableFlag24();
break;