diff options
author | Travis Howell | 2005-02-23 11:15:41 +0000 |
---|---|---|
committer | Travis Howell | 2005-02-23 11:15:41 +0000 |
commit | f215c1ceae381c0546d490821f756f7d325ceabb (patch) | |
tree | 313fe4f1e86d546b0a45d54e0ef59f054b267e6d /scumm/script_v90he.cpp | |
parent | 84bc25a4269597c847ea275b764708e01c25b222 (diff) | |
download | scummvm-rg350-f215c1ceae381c0546d490821f756f7d325ceabb.tar.gz scummvm-rg350-f215c1ceae381c0546d490821f756f7d325ceabb.tar.bz2 scummvm-rg350-f215c1ceae381c0546d490821f756f7d325ceabb.zip |
Update HE100
svn-id: r16880
Diffstat (limited to 'scumm/script_v90he.cpp')
-rw-r--r-- | scumm/script_v90he.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/script_v90he.cpp b/scumm/script_v90he.cpp index 31a56ca3d5..ccddd49210 100644 --- a/scumm/script_v90he.cpp +++ b/scumm/script_v90he.cpp @@ -1225,11 +1225,11 @@ void ScummEngine_v90he::o90_setSpriteInfo() { } } else if (code & 0x80) { for (int i = _curSpriteId; i <= _curMaxSpriteId; ++i) { - spriteInfoSet_setClassFlags(i, code & 0x7F, 1); + spriteInfoSet_setClassFlag(i, code & 0x7F, 1); } } else { for (int i = _curSpriteId; i <= _curMaxSpriteId; ++i) { - spriteInfoSet_setClassFlags(i, code & 0x7F, 0); + spriteInfoSet_setClassFlag(i, code & 0x7F, 0); } } --p; |