diff options
Diffstat (limited to 'engines/fullpipe/gfx.cpp')
-rw-r--r-- | engines/fullpipe/gfx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/gfx.cpp b/engines/fullpipe/gfx.cpp index d680d32790..131396c7f7 100644 --- a/engines/fullpipe/gfx.cpp +++ b/engines/fullpipe/gfx.cpp @@ -1065,7 +1065,7 @@ void Shadows::initMovement(Movement *mov) { _items[0].height = point.y; for (uint i = 1; i < num; i++) { - _items[i].dynPhase = mov->getDynamicPhaseByIndex(i); + _items[i].dynPhase = mov->getDynamicPhaseByIndex(i - 1); _items[i].dynPhase->getDimensions(&point); _items[i].width = point.x; _items[i].height = point.y; |