aboutsummaryrefslogtreecommitdiff
path: root/scumm/actor.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-05-23 11:50:36 +0000
committerTravis Howell2005-05-23 11:50:36 +0000
commit84b9f4b2e097525bbeebbc704d5196f2a119ea94 (patch)
tree373c4de3e027ab5b1fbeb1cecf34e36d8bf3560b /scumm/actor.cpp
parent28e156df838341c2bb03e41f9ba22c51988358e9 (diff)
downloadscummvm-rg350-84b9f4b2e097525bbeebbc704d5196f2a119ea94.tar.gz
scummvm-rg350-84b9f4b2e097525bbeebbc704d5196f2a119ea94.tar.bz2
scummvm-rg350-84b9f4b2e097525bbeebbc704d5196f2a119ea94.zip
Rename sprite functions.
svn-id: r18231
Diffstat (limited to 'scumm/actor.cpp')
-rw-r--r--scumm/actor.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp
index 483629579e..8cbf2eee80 100644
--- a/scumm/actor.cpp
+++ b/scumm/actor.cpp
@@ -1022,8 +1022,8 @@ void ScummEngine_v71he::processActors() {
void ScummEngine_v90he::processActors() {
preProcessAuxQueue();
- _sprite->spritesMarkDirty(false);
- _sprite->spritesProcessWiz(true);
+ _sprite->setRedrawFlags(false);
+ _sprite->processImages(true);
if (!_skipProcessActors)
ScummEngine::processActors();
@@ -1032,8 +1032,8 @@ void ScummEngine_v90he::processActors() {
postProcessAuxQueue();
- _sprite->spritesMarkDirty(true);
- _sprite->spritesProcessWiz(false);
+ _sprite->setRedrawFlags(true);
+ _sprite->processImages(false);
}
#endif