diff options
Diffstat (limited to 'scumm/script_v100he.cpp')
-rw-r--r-- | scumm/script_v100he.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/script_v100he.cpp b/scumm/script_v100he.cpp index 288c8ab5ac..e2f1c10a16 100644 --- a/scumm/script_v100he.cpp +++ b/scumm/script_v100he.cpp @@ -1707,7 +1707,7 @@ void ScummEngine_v100he::o100_setSpriteInfo() { spriteId++; for (; spriteId <= _curMaxSpriteId; spriteId++) - spriteInfoSet_addImageToList(spriteId, 1, &args[0]); + spriteAddImageToList(spriteId, 1, &args[0]); break; case 48: args[0] = pop(); @@ -1790,7 +1790,7 @@ void ScummEngine_v100he::o100_setSpriteInfo() { spriteInfoSet_flag14(spriteId, args[0]); break; case 2: - spriteInfoSet_flag16(spriteId, args[0]); + spriteInfoSet_flagActive(spriteId, args[0]); break; case 3: spriteInfoSet_flag13(spriteId, args[0]); @@ -2489,7 +2489,7 @@ void ScummEngine_v100he::o100_getSpriteInfo() { push(spriteInfoGet_flags_14(spriteId)); break; case 2: - push(spriteInfoGet_flags_16(spriteId)); + push(spriteInfoGet_flagActive(spriteId)); break; case 3: push(spriteInfoGet_flags_13(spriteId)); |