aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorMatthew Hoops2011-09-22 10:31:39 -0400
committerMatthew Hoops2011-09-22 10:31:39 -0400
commitb92476ecb17278ad04d75a69128fb5f5e3b9813c (patch)
tree51a521adc6fe306c54448bb046dcc76678d56d52 /engines
parent17d6f74867994fd38809036602b24a2fc02ef987 (diff)
downloadscummvm-rg350-b92476ecb17278ad04d75a69128fb5f5e3b9813c.tar.gz
scummvm-rg350-b92476ecb17278ad04d75a69128fb5f5e3b9813c.tar.bz2
scummvm-rg350-b92476ecb17278ad04d75a69128fb5f5e3b9813c.zip
PEGASUS: Don't update movies if they're paused
Diffstat (limited to 'engines')
-rwxr-xr-xengines/pegasus/movie.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/pegasus/movie.cpp b/engines/pegasus/movie.cpp
index 87ff872347..9ddc091c0e 100755
--- a/engines/pegasus/movie.cpp
+++ b/engines/pegasus/movie.cpp
@@ -165,7 +165,7 @@ void Movie::checkCallBacks() {
// The reason why we overrode TimeBase's checkCallBacks():
// Again, avoiding timers and handling it here
- if (_video->needsUpdate())
+ if (!_video->isPaused() && _video->needsUpdate())
redrawMovieWorld();
}