diff options
-rw-r--r-- | engines/fullpipe/scenes/scene29.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/engines/fullpipe/scenes/scene29.cpp b/engines/fullpipe/scenes/scene29.cpp index 2e95deb6ea..862b6916d9 100644 --- a/engines/fullpipe/scenes/scene29.cpp +++ b/engines/fullpipe/scenes/scene29.cpp @@ -34,6 +34,8 @@ #include "fullpipe/behavior.h" +#define DEBUG 0 + namespace Fullpipe { struct WalkingBearder { @@ -202,6 +204,10 @@ void sceneHandler29_manBend() { } bool sceneHandler29_checkRedBallHit(StaticANIObject *ani, int maxx) { +#if DEBUG + return false; +#endif + if (!g_vars->scene29_arcadeIsOn || g_vars->scene29_manIsHit) return false; @@ -222,6 +228,10 @@ bool sceneHandler29_checkRedBallHit(StaticANIObject *ani, int maxx) { } bool sceneHandler29_checkGreenBallHit(StaticANIObject *ani, int maxx) { +#if DEBUG + return false; +#endif + if (!g_vars->scene29_arcadeIsOn || g_vars->scene29_manIsHit) return false; |