diff options
author | Eugene Sandulenko | 2014-06-09 22:38:43 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2014-06-09 22:39:31 +0300 |
commit | 39088eec05c8cf8ba363def42e2c3aeecc38b397 (patch) | |
tree | f9ed6e4523af6f76b04ff18229379ba7b93f2316 /engines | |
parent | 2e30e0fc7d121bb9ed27f868cc8652230066d1d6 (diff) | |
download | scummvm-rg350-39088eec05c8cf8ba363def42e2c3aeecc38b397.tar.gz scummvm-rg350-39088eec05c8cf8ba363def42e2c3aeecc38b397.tar.bz2 scummvm-rg350-39088eec05c8cf8ba363def42e2c3aeecc38b397.zip |
FULLPIPE: Fix copy-paste error from original. CID 1199556
Diffstat (limited to 'engines')
-rw-r--r-- | engines/fullpipe/scenes/scene29.cpp | 2 |
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); } |