aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe
diff options
context:
space:
mode:
Diffstat (limited to 'engines/fullpipe')
-rw-r--r--engines/fullpipe/scenes/scene09.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/engines/fullpipe/scenes/scene09.cpp b/engines/fullpipe/scenes/scene09.cpp
index e3f113a1f0..ccf229c774 100644
--- a/engines/fullpipe/scenes/scene09.cpp
+++ b/engines/fullpipe/scenes/scene09.cpp
@@ -188,6 +188,8 @@ void sceneHandler09_startAuntie() {
}
void sceneHandler09_spitterClick() {
+ debugC(2, kDebugSceneLogic, "scene09: spitterClick");
+
if (g_vars->scene09_spitter->_flags & 4) {
PicAniInfo info;
@@ -229,6 +231,8 @@ void sceneHandler09_spitterClick() {
}
void sceneHandler09_eatBall() {
+ debugC(2, kDebugSceneLogic, "scene09: eatBall");
+
if (g_vars->scene09_flyingBall) {
g_vars->scene09_flyingBall->hide();
@@ -318,6 +322,8 @@ void sceneHandler09_limitHangerPhase() {
}
void sceneHandler09_collideBall(uint num) {
+ debugC(2, kDebugSceneLogic, "scene09: collideBall");
+
if (g_vars->scene09_gulperIsPresent) {
Ball *ball = g_vars->scene09_balls[num];
@@ -337,6 +343,8 @@ void sceneHandler09_collideBall(uint num) {
}
void sceneHandler09_ballExplode(uint num) {
+ debugC(2, kDebugSceneLogic, "scene09: ballExplode");
+
Ball *ball = g_vars->scene09_balls[num];
g_vars->scene09_balls.remove_at(num);