aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/fullpipe/scenes/scene16.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/fullpipe/scenes/scene16.cpp b/engines/fullpipe/scenes/scene16.cpp
index 52daef3b8a..b7a63dff46 100644
--- a/engines/fullpipe/scenes/scene16.cpp
+++ b/engines/fullpipe/scenes/scene16.cpp
@@ -65,7 +65,7 @@ void scene16_initScene(Scene *sc) {
idx++;
- if (idx >= 2)
+ if (idx > 1)
idx = 0;
}
@@ -76,7 +76,7 @@ void scene16_initScene(Scene *sc) {
idx++;
- if (idx >= 2)
+ if (idx > 1)
idx = 0;
}
} else {
@@ -460,7 +460,7 @@ int sceneHandler16(ExCommand *cmd) {
if (g_vars->scene16_placeIsOccupied) {
g_vars->scene16_walkingCount++;
- if (g_vars->scene16_walkingCount < 280) {
+ if (g_vars->scene16_walkingCount >= 280) {
sceneHandler16_putOnWheel();
g_vars->scene16_walkingCount = 0;