diff options
author | Matthew Hoops | 2011-09-22 10:31:39 -0400 |
---|---|---|
committer | Matthew Hoops | 2011-09-22 10:31:39 -0400 |
commit | b92476ecb17278ad04d75a69128fb5f5e3b9813c (patch) | |
tree | 51a521adc6fe306c54448bb046dcc76678d56d52 /engines | |
parent | 17d6f74867994fd38809036602b24a2fc02ef987 (diff) | |
download | scummvm-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-x | engines/pegasus/movie.cpp | 2 |
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(); } |