aboutsummaryrefslogtreecommitdiff
path: root/engines/hopkins/anim.cpp
diff options
context:
space:
mode:
authorStrangerke2012-12-29 14:20:34 +0100
committerStrangerke2012-12-29 14:20:34 +0100
commitb284338d6778775ab755af487dfd52d05b953e45 (patch)
tree084fe31586a767f3cc8fa3f841b9963fc266bdd5 /engines/hopkins/anim.cpp
parent0adb2a31da83003038531b2a7b14448af7736fc5 (diff)
downloadscummvm-rg350-b284338d6778775ab755af487dfd52d05b953e45.tar.gz
scummvm-rg350-b284338d6778775ab755af487dfd52d05b953e45.tar.bz2
scummvm-rg350-b284338d6778775ab755af487dfd52d05b953e45.zip
HOPKINS: Some refactoring in ObjectManager, some renaming
Diffstat (limited to 'engines/hopkins/anim.cpp')
-rw-r--r--engines/hopkins/anim.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/hopkins/anim.cpp b/engines/hopkins/anim.cpp
index e0e64b4b72..c2027a777d 100644
--- a/engines/hopkins/anim.cpp
+++ b/engines/hopkins/anim.cpp
@@ -603,7 +603,7 @@ void AnimationManager::loadAnim(const Common::String &animName) {
void AnimationManager::clearAnim() {
for (int idx = 0; idx < 35; ++idx) {
_vm->_globals.Bqe_Anim[idx]._data = _vm->_globals.freeMemory(_vm->_globals.Bqe_Anim[idx]._data);
- _vm->_globals.Bqe_Anim[idx].field4 = 0;
+ _vm->_globals.Bqe_Anim[idx]._enabledFl = false;
}
for (int idx = 0; idx < 8; ++idx) {
@@ -736,7 +736,7 @@ void AnimationManager::searchAnim(const byte *data, int animIndex, int count) {
(data[v6] == 'F' && data[v6 + 1] == 'I' && data[v6 + 2] == 'N'))
innerLoopCond = true;
if (count < v6) {
- _vm->_globals.Bqe_Anim[animIndex].field4 = 0;
+ _vm->_globals.Bqe_Anim[animIndex]._enabledFl = false;
_vm->_globals.Bqe_Anim[animIndex]._data = g_PTRNUL;
return;
}
@@ -744,7 +744,7 @@ void AnimationManager::searchAnim(const byte *data, int animIndex, int count) {
++v7;
} while (!innerLoopCond);
_vm->_globals.Bqe_Anim[animIndex]._data = _vm->_globals.allocMemory(v7 + 50);
- _vm->_globals.Bqe_Anim[animIndex].field4 = 1;
+ _vm->_globals.Bqe_Anim[animIndex]._enabledFl = true;
memcpy(_vm->_globals.Bqe_Anim[animIndex]._data, v21 + data + 5, 20);
byte *dataP = _vm->_globals.Bqe_Anim[animIndex]._data;