diff options
author | Strangerke | 2016-09-05 22:12:20 +0200 |
---|---|---|
committer | Strangerke | 2016-09-05 22:12:20 +0200 |
commit | dad8637ae89d363c40fecfdd8b76afe3d041d6d0 (patch) | |
tree | 9042e1f1f5ff113809e73674f6bde514c49936dc /engines/dm | |
parent | b6ab58658fad5519582e80482d1671cc08a38b56 (diff) | |
download | scummvm-rg350-dad8637ae89d363c40fecfdd8b76afe3d041d6d0.tar.gz scummvm-rg350-dad8637ae89d363c40fecfdd8b76afe3d041d6d0.tar.bz2 scummvm-rg350-dad8637ae89d363c40fecfdd8b76afe3d041d6d0.zip |
DM: Fix pointer style in ObjectMan
Diffstat (limited to 'engines/dm')
-rw-r--r-- | engines/dm/objectman.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dm/objectman.cpp b/engines/dm/objectman.cpp index 1fc6aa4b38..b81415d1b0 100644 --- a/engines/dm/objectman.cpp +++ b/engines/dm/objectman.cpp @@ -235,7 +235,7 @@ void ObjectMan::drawIconInSlotBox(uint16 slotBoxIndex, int16 iconIndex) { } void ObjectMan::drawLeaderObjectName(Thing thing) { - char* objectName = nullptr; + char *objectName = nullptr; int16 iconIndex = getIconIndex(thing); if (iconIndex == k147_IconIndiceJunkChampionBones) { Junk *junk = (Junk*)_vm->_dungeonMan->getThingData(thing); |