aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/statics.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2013-09-22 11:24:57 +0300
committerEugene Sandulenko2013-09-22 11:25:28 +0300
commit19955e5d1943309c9ac2d696d9ee22eb4dee4eb9 (patch)
treeea4f75781a9ddad3100eb4e88e5281d0fa1ee9b2 /engines/fullpipe/statics.cpp
parent55a759b9d513f083fc9a10d3fa653ac22a9a54d8 (diff)
downloadscummvm-rg350-19955e5d1943309c9ac2d696d9ee22eb4dee4eb9.tar.gz
scummvm-rg350-19955e5d1943309c9ac2d696d9ee22eb4dee4eb9.tar.bz2
scummvm-rg350-19955e5d1943309c9ac2d696d9ee22eb4dee4eb9.zip
FULLPIPE: Fix stupid c/p error. CID 1063216
Diffstat (limited to 'engines/fullpipe/statics.cpp')
-rw-r--r--engines/fullpipe/statics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/statics.cpp b/engines/fullpipe/statics.cpp
index 343d5e92dc..4b5e4c1e35 100644
--- a/engines/fullpipe/statics.cpp
+++ b/engines/fullpipe/statics.cpp
@@ -1553,7 +1553,7 @@ bool Movement::gotoPrevFrame() {
_currDynamicPhaseIndex--;
if (_currDynamicPhaseIndex < 0)
- _currDynamicPhaseIndex = _currMovement->_dynamicPhases.size() - 1;
+ _currDynamicPhaseIndex = _dynamicPhases.size() - 1;
}
updateCurrDynamicPhase();