aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/scenes
diff options
context:
space:
mode:
authorEugene Sandulenko2016-09-21 09:43:36 +0200
committerEugene Sandulenko2016-09-21 21:22:22 +0200
commit1810aaf3137c0da45fe515211583031e7c2e9b76 (patch)
tree1bf8ee15562ba41391565ccbad4565f30e3ca0b9 /engines/fullpipe/scenes
parentb62aa0e079129dd9cbb5b9cd4efa56e05544561d (diff)
downloadscummvm-rg350-1810aaf3137c0da45fe515211583031e7c2e9b76.tar.gz
scummvm-rg350-1810aaf3137c0da45fe515211583031e7c2e9b76.tar.bz2
scummvm-rg350-1810aaf3137c0da45fe515211583031e7c2e9b76.zip
FULLPIPE: Added more debug to scene09
Diffstat (limited to 'engines/fullpipe/scenes')
-rw-r--r--engines/fullpipe/scenes/scene09.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/fullpipe/scenes/scene09.cpp b/engines/fullpipe/scenes/scene09.cpp
index 209cf183b3..cb90061019 100644
--- a/engines/fullpipe/scenes/scene09.cpp
+++ b/engines/fullpipe/scenes/scene09.cpp
@@ -379,6 +379,11 @@ void sceneHandler09_checkHangerCollide() {
hit = g_vars->scene09_hangers[i]->ani->isPixelHitAtPos(newx + g_vars->scene09_hangerOffsets[j].x, ball->_oy + g_vars->scene09_hangerOffsets[j].y);
if (hit) {
+ for (int k = 0; k < 20; k++) {
+ debugCN(2, kDebugSceneLogic, "%c", k == g_vars->scene09_hangerOffsets[j].x ? '@' : g_vars->scene09_hangers[i]->ani->isPixelHitAtPos(newx + k, ball->_oy + -15) ? '-' : ' ');
+ }
+ debugC(2, kDebugSceneLogic, "");
+
sceneHandler09_ballExplode(b);
break;
}