aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2014-06-09 22:38:43 +0300
committerEugene Sandulenko2014-06-09 22:39:31 +0300
commit39088eec05c8cf8ba363def42e2c3aeecc38b397 (patch)
treef9ed6e4523af6f76b04ff18229379ba7b93f2316
parent2e30e0fc7d121bb9ed27f868cc8652230066d1d6 (diff)
downloadscummvm-rg350-39088eec05c8cf8ba363def42e2c3aeecc38b397.tar.gz
scummvm-rg350-39088eec05c8cf8ba363def42e2c3aeecc38b397.tar.bz2
scummvm-rg350-39088eec05c8cf8ba363def42e2c3aeecc38b397.zip
FULLPIPE: Fix copy-paste error from original. CID 1199556
-rw-r--r--engines/fullpipe/scenes/scene29.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/scenes/scene29.cpp b/engines/fullpipe/scenes/scene29.cpp
index 2d5127137d..8f82e99ad1 100644
--- a/engines/fullpipe/scenes/scene29.cpp
+++ b/engines/fullpipe/scenes/scene29.cpp
@@ -972,7 +972,7 @@ int sceneHandler29(ExCommand *cmd) {
break;
case MSG_SC29_SHOWLASTRED:
- if (g_vars->scene29_balls.numBalls) {
+ if (g_vars->scene29_redBalls.numBalls) { // original uses scene29_balls which looks like a copy/paste error
g_vars->scene29_redBalls.field_8->ani->show1(-1, -1, -1, 0);
g_vars->scene29_redBalls.field_8->ani->startAnim(MV_SHR_HITASS, 0, -1);
}