aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/projexpl.cpp
diff options
context:
space:
mode:
authorStrangerke2016-09-18 11:46:53 +0200
committerStrangerke2016-09-18 11:46:53 +0200
commit0750c20fe7e2d152a7e2b181c455c3d24e653c86 (patch)
treef2a54c3aee98c002d9c6ae87811c2863ed1459b3 /engines/dm/projexpl.cpp
parentebe014f4be5ef81c95b8c2bdae7928b18ce61c1c (diff)
downloadscummvm-rg350-0750c20fe7e2d152a7e2b181c455c3d24e653c86.tar.gz
scummvm-rg350-0750c20fe7e2d152a7e2b181c455c3d24e653c86.tar.bz2
scummvm-rg350-0750c20fe7e2d152a7e2b181c455c3d24e653c86.zip
DM: rename members of DescriptionMask, PanelContent, CreatureSize, CreatureMask
Diffstat (limited to 'engines/dm/projexpl.cpp')
-rw-r--r--engines/dm/projexpl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dm/projexpl.cpp b/engines/dm/projexpl.cpp
index 33ae021280..f692e70656 100644
--- a/engines/dm/projexpl.cpp
+++ b/engines/dm/projexpl.cpp
@@ -516,7 +516,7 @@ void ProjExpl::processEvent25(TimelineEvent *event) {
nonMaterialAdditionalAttack++;
int16 creatureCount = group->getCount();
do {
- if (getFlag(_vm->_groupMan->_activeGroups[group->getActiveGroupIndex()]._aspect[creatureCount], k0x0080_MaskActiveGroupIsAttacking)) /* Materializer / Zytaz can only be damaged while they are attacking */
+ if (getFlag(_vm->_groupMan->_activeGroups[group->getActiveGroupIndex()]._aspect[creatureCount], kDMAspectMaskActiveGroupIsAttacking)) /* Materializer / Zytaz can only be damaged while they are attacking */
_vm->_groupMan->groupGetDamageCreatureOutcome(group, creatureCount, mapX, mapY, attack + _vm->getRandomNumber(nonMaterialAdditionalAttack) + _vm->getRandomNumber(4), true);
} while (--creatureCount >= 0);
} else