diff options
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(); } |