summaryrefslogtreecommitdiff
path: root/library
diff options
context:
space:
mode:
authorQuietust2012-09-12 13:41:59 -0500
committerQuietust2012-09-12 13:41:59 -0500
commit46321a6a01ba4fff79992c7bde26c812b14fd382 (patch)
treecbe3504bb9269c003d18bb22f602d3c3cfd4b2bc /library
parentf06f9af6b80068fbafe340a59ff7d755399509d4 (diff)
downloaddfhack-46321a6a01ba4fff79992c7bde26c812b14fd382.tar.gz
dfhack-46321a6a01ba4fff79992c7bde26c812b14fd382.tar.bz2
dfhack-46321a6a01ba4fff79992c7bde26c812b14fd382.tar.xz
Rename world_data.unk_204 to feature_map
Diffstat (limited to 'library')
-rw-r--r--library/modules/Maps.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/modules/Maps.cpp b/library/modules/Maps.cpp
index d0401164..f1f40f19 100644
--- a/library/modules/Maps.cpp
+++ b/library/modules/Maps.cpp
@@ -307,7 +307,7 @@ df::feature_init *Maps::getLocalInitFeature(df::coord2d rgn_pos, int32_t index)
df::coord2d bigregion = rgn_pos / 16;
// bigregion is 16x16 regions. for each bigregion in X dimension:
- auto fptr = data->unk_204[bigregion.x][bigregion.y].features;
+ auto fptr = data->feature_map[bigregion.x][bigregion.y].features;
if (!fptr)
return NULL;