aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.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/scumm.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/scumm.cpp')
-rw-r--r--scumm/scumm.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index 7b6b28cea4..2c77d03cca 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -1836,7 +1836,7 @@ void ScummEngine_v90he::scummInit() {
_heObjectNum = 0;
_hePaletteNum = 0;
- _sprite->spritesResetTables(0);
+ _sprite->resetTables(0);
memset(&_wizParams, 0, sizeof(_wizParams));
if (_features & GF_HE_CURSORLESS)
@@ -2268,8 +2268,8 @@ load_game:
#ifndef DISABLE_HE
if (_heversion >= 90) {
- ((ScummEngine_v90he *)this)->_sprite->spritesBlitToScreen();
- ((ScummEngine_v90he *)this)->_sprite->spritesSortActiveSprites();
+ ((ScummEngine_v90he *)this)->_sprite->resetBackground();
+ ((ScummEngine_v90he *)this)->_sprite->sortActiveSprites();
}
#endif
@@ -2329,7 +2329,7 @@ load_game:
#ifndef DISABLE_HE
if (_heversion >= 90) {
- ((ScummEngine_v90he *)this)->_sprite->spritesUpdateImages();
+ ((ScummEngine_v90he *)this)->_sprite->updateImages();
}
if (_heversion >= 98) {
((ScummEngine_v90he *)this)->_logicHE->endOfFrame();