aboutsummaryrefslogtreecommitdiff
path: root/engines/dm/console.cpp
diff options
context:
space:
mode:
authorStrangerke2016-08-27 23:10:13 +0200
committerStrangerke2016-08-27 23:10:13 +0200
commit361722d459b1afff6b12ba722420e86703b06dea (patch)
tree2f735ec4dc61647ce524cb9291bab54e6d971d4b /engines/dm/console.cpp
parentb4fecce3fc7d9e64d6dd563674ad96248c27110b (diff)
downloadscummvm-rg350-361722d459b1afff6b12ba722420e86703b06dea.tar.gz
scummvm-rg350-361722d459b1afff6b12ba722420e86703b06dea.tar.bz2
scummvm-rg350-361722d459b1afff6b12ba722420e86703b06dea.zip
DM: More renaming in DungeonMan, move some arrays
Diffstat (limited to 'engines/dm/console.cpp')
-rw-r--r--engines/dm/console.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dm/console.cpp b/engines/dm/console.cpp
index c5ebd140af..a8157003d6 100644
--- a/engines/dm/console.cpp
+++ b/engines/dm/console.cpp
@@ -250,7 +250,7 @@ bool Console::Cmd_gimme(int argc, const char** argv) {
for (int16 thingType = 0; thingType < 16; ++thingType) { // 16 number of item types
uint16 *thingDataArray = _vm->_dungeonMan->_thingData[thingType];
- uint16 thingTypeSize = g235_ThingDataWordCount[thingType];
+ uint16 thingTypeSize = _vm->_dungeonMan->_thingDataWordCount[thingType];
uint16 thingCount = _vm->_dungeonMan->_dungeonFileHeader._thingCounts[thingType];
Thing dummyThing(0);