diff options
author | Max Horn | 2003-09-08 20:50:35 +0000 |
---|---|---|
committer | Max Horn | 2003-09-08 20:50:35 +0000 |
commit | 72b24e8b4729e105497c207fd055fbc2db003a3c (patch) | |
tree | aff21e904a56a2fd5f3343ef512e9f0fb1305dea | |
parent | 26a1040886b711791765073ecd87f527eb662a2b (diff) | |
download | scummvm-rg350-72b24e8b4729e105497c207fd055fbc2db003a3c.tar.gz scummvm-rg350-72b24e8b4729e105497c207fd055fbc2db003a3c.tar.bz2 scummvm-rg350-72b24e8b4729e105497c207fd055fbc2db003a3c.zip |
actually USAGE_BIT_RESTORED must be cleared, too
svn-id: r10110
-rw-r--r-- | scumm/actor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp index 50b778a49d..cbefe01dca 100644 --- a/scumm/actor.cpp +++ b/scumm/actor.cpp @@ -1575,6 +1575,7 @@ void Scumm::resetActorBgs() { for (i = 0; i < gdi._numStrips; i++) { int strip = _screenStartStrip + i; clearGfxUsageBit(strip, USAGE_BIT_DIRTY); + clearGfxUsageBit(strip, USAGE_BIT_RESTORED); for (j = 1; j < _numActors; j++) { if (testGfxUsageBit(strip, j) && ((_actors[j].top != 0xFF || _actors[j].needRedraw) || _actors[j].needBgReset)) { |