From 4aabe5626b2f4a3bb95f2232665f9bad47b5b75a Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Tue, 6 Sep 2016 10:55:54 +0200 Subject: FULLPIPE: Added more debug info to scene09 --- engines/fullpipe/scenes/scene09.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'engines/fullpipe') 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); -- cgit v1.2.3