aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/support
diff options
context:
space:
mode:
authorPaul Gilbert2017-06-19 20:43:50 -0400
committerPaul Gilbert2017-06-19 20:43:50 -0400
commit6ccbdf78e566757a7fa71054a0298e18de1ea014 (patch)
tree025e6fab048a18985a204e1933c80b30eb5a193c /engines/titanic/support
parentec4550fae5f388fbd4d0a18c3eff545ec5c876f3 (diff)
downloadscummvm-rg350-6ccbdf78e566757a7fa71054a0298e18de1ea014.tar.gz
scummvm-rg350-6ccbdf78e566757a7fa71054a0298e18de1ea014.tar.bz2
scummvm-rg350-6ccbdf78e566757a7fa71054a0298e18de1ea014.zip
TITANIC: Fix Bellbot walking off during checkin
Diffstat (limited to 'engines/titanic/support')
-rw-r--r--engines/titanic/support/avi_surface.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/titanic/support/avi_surface.cpp b/engines/titanic/support/avi_surface.cpp
index 22ed166034..c42face861 100644
--- a/engines/titanic/support/avi_surface.cpp
+++ b/engines/titanic/support/avi_surface.cpp
@@ -205,11 +205,9 @@ bool AVISurface::handleEvents(CMovieEventList &events) {
}
if (isPlaying()) {
- if (newFrame != getFrame()) {
+ if (newFrame != getFrame())
// The frame has been changed, so move to new position
seekToFrame(newFrame);
- return renderFrame();
- }
// Get any events for the given position
info->getMovieFrame(events, newFrame);