Skip to content

Commit

Permalink
SAGA: Fix CID 1002507. Unused pointer value.
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Jul 15, 2013
1 parent 96e1d3b commit 7ae3386
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/saga/animation.cpp
Expand Up @@ -185,7 +185,7 @@ int Anim::playCutaway(int cut, bool fade) {
event.time = (40 / 3) * 1000 / _cutawayList[cut].frameRate;

if (fade)
eventColumns = _vm->_events->chain(eventColumns, event);
_vm->_events->chain(eventColumns, event);
else
_vm->_events->queue(event);
}
Expand Down

0 comments on commit 7ae3386

Please sign in to comment.