aboutsummaryrefslogtreecommitdiff
path: root/src/tools/map_extractor
diff options
context:
space:
mode:
authorNay <dnpd.dd@gmail.com>2013-01-28 02:54:27 +0000
committerNay <dnpd.dd@gmail.com>2013-01-28 02:54:27 +0000
commit98f01c2b12e6a2aeef8b2f9810e5a3cce9d5e475 (patch)
tree69501baa99b79edf4e1767b9598e8d2109232eeb /src/tools/map_extractor
parentb404e0bec1d39a90a516ed935d882faa47e54a04 (diff)
Core/Misc: Fix compile errors introduced in previous merge
There are probably other merge issues that got through, please report them
Diffstat (limited to 'src/tools/map_extractor')
-rw-r--r--src/tools/map_extractor/System.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/map_extractor/System.cpp b/src/tools/map_extractor/System.cpp
index 800328810a7..7b591ddfc85 100644
--- a/src/tools/map_extractor/System.cpp
+++ b/src/tools/map_extractor/System.cpp
@@ -901,7 +901,7 @@ bool ConvertADT(char *filename, char *filename2, int /*cell_y*/, int /*cell_x*/,
{
for (int j = 0; j < ADT_CELLS_PER_GRID; ++j)
{
- adt_MCNK * cell = cells->getMCNK(i,j);
+ adt_MCNK * cell = adt.cells[i][j];
if (!cell)
continue;
holes[i][j] = cell->holes;