aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/eventman.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/eventman.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/eventman.cpp')
-rw-r--r--engines/dm/eventman.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/dm/eventman.cpp b/engines/dm/eventman.cpp
index ffdb62c9cc..e98f108166 100644
--- a/engines/dm/eventman.cpp
+++ b/engines/dm/eventman.cpp
@@ -1257,7 +1257,7 @@ void EventManager::commandProcessCommands160To162ClickInResurrectReincarnatePane
Box box;
box._rect.top = 0;
box._rect.bottom = 28;
- box._rect.left = championIndex * k69_ChampionStatusBoxSpacing;
+ box._rect.left = championIndex * kDMChampionStatusBoxSpacing;
box._rect.right = box._rect.left + 66;
dispMan._useByteBoxCoordinates = false;
dispMan.fillScreenBox(box, kDMColorBlack);
@@ -1334,14 +1334,14 @@ void EventManager::commandProcess81ClickInPanel(int16 x, int16 y) {
CommandType commandType;
switch (invMan._panelContent) {
- case k4_PanelContentChest:
+ case kDMPanelContentChest:
if (champMan._leaderIndex == kDMChampionNone) // if no leader
return;
commandType = getCommandTypeFromMouseInput(_mouseInputPanelChest, Common::Point(x, y), kDMMouseButtonLeft);
if (commandType != kDMCommandNone)
_vm->_championMan->clickOnSlotBox(commandType - kDMCommandClickOnSlotBoxChampion0StatusBoxReadyHand);
break;
- case k5_PanelContentResurrectReincarnate:
+ case kDMPanelContentResurrectReincarnate:
if (!champMan._leaderEmptyHanded)
break;
commandType = getCommandTypeFromMouseInput(_mouseInputPanelResurrectReincarnateCancel, Common::Point(x, y), kDMMouseButtonLeft);