From b92476ecb17278ad04d75a69128fb5f5e3b9813c Mon Sep 17 00:00:00 2001 From: Matthew Hoops Date: Thu, 22 Sep 2011 10:31:39 -0400 Subject: PEGASUS: Don't update movies if they're paused --- engines/pegasus/movie.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines') 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(); } -- cgit v1.2.3