aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/objectman.cpp
diff options
context:
space:
mode:
authorBendegúz Nagy2016-07-07 00:46:51 +0200
committerBendegúz Nagy2016-08-26 23:02:22 +0200
commitc95b23317ce179fe168a20f39a132b4cd9ec4f32 (patch)
treed160bb648f9a0903d89379effb13b4635432c799 /engines/dm/objectman.cpp
parent411ad40ca43b900e3bdb9804ca39b10b25d6fa4b (diff)
downloadscummvm-rg350-c95b23317ce179fe168a20f39a132b4cd9ec4f32.tar.gz
scummvm-rg350-c95b23317ce179fe168a20f39a132b4cd9ec4f32.tar.bz2
scummvm-rg350-c95b23317ce179fe168a20f39a132b4cd9ec4f32.zip
DM: Add some missing code
Diffstat (limited to 'engines/dm/objectman.cpp')
-rw-r--r--engines/dm/objectman.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/dm/objectman.cpp b/engines/dm/objectman.cpp
index ff7ff4dd9d..157cfd8ad8 100644
--- a/engines/dm/objectman.cpp
+++ b/engines/dm/objectman.cpp
@@ -252,4 +252,10 @@ void ObjectMan::f34_drawLeaderObjectName(Thing thing) {
IconIndice ObjectMan::f39_getIconIndexInSlotBox(uint16 slotBoxIndex) {
return (IconIndice)_g30_slotBoxes[slotBoxIndex]._iconIndex;
}
+
+void ObjectMan::f35_clearLeaderObjectName() {
+ static Box g28_BoxLeaderHandObjectName(233, 319, 33, 38); // @ G0028_s_Graphic562_Box_LeaderHandObjectName
+ _vm->_displayMan->D24_fillScreenBox(g28_BoxLeaderHandObjectName, k0_ColorBlack);
+}
+
}