diff options
author | Travis Howell | 2005-05-10 15:43:40 +0000 |
---|---|---|
committer | Travis Howell | 2005-05-10 15:43:40 +0000 |
commit | ff20d8c4df491f0550595efe8b1277d6ac7fd1a2 (patch) | |
tree | 230cd11023873fd83567857319552a9759b34a20 /scumm | |
parent | 22f4b63df824e6452613b9ca75b1dc9e2739a484 (diff) | |
download | scummvm-rg350-ff20d8c4df491f0550595efe8b1277d6ac7fd1a2.tar.gz scummvm-rg350-ff20d8c4df491f0550595efe8b1277d6ac7fd1a2.tar.bz2 scummvm-rg350-ff20d8c4df491f0550595efe8b1277d6ac7fd1a2.zip |
Fix HE regressions.
svn-id: r18034
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/actor.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp index fbf4c309d6..1f94702ce7 100644 --- a/scumm/actor.cpp +++ b/scumm/actor.cpp @@ -1015,6 +1015,8 @@ void ScummEngine_v71he::processActors() { if (!_skipProcessActors) ScummEngine::processActors(); + _fullRedraw = false; + postProcessAuxQueue(); } @@ -1028,6 +1030,8 @@ void ScummEngine_v90he::processActors() { if (!_skipProcessActors) ScummEngine::processActors(); + _fullRedraw = false; + postProcessAuxQueue(); spritesMarkDirty(true); |