summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tags.cc
diff options
context:
space:
mode:
authorJude Brown <bookofjude@users.sourceforge.net>2009-12-10 10:36:28 +1000
committerJude Brown <bookofjude@users.sourceforge.net>2009-12-10 11:00:54 +1000
commitc602df19e39a4092f2307f414c7ea7d6a7fe3af1 (patch)
tree76859a53332734d3f25fdcc2c17947fd6134d7d1 /crawl-ref/source/tags.cc
parent9f4bc8c473b1da88c6f322c70dccd0f60d3b6706 (diff)
downloadcrawl-ref-c602df19e39a4092f2307f414c7ea7d6a7fe3af1.tar.gz
crawl-ref-c602df19e39a4092f2307f414c7ea7d6a7fe3af1.zip
Minor tweaks to TILE: specifier.
Diffstat (limited to 'crawl-ref/source/tags.cc')
-rw-r--r--crawl-ref/source/tags.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/tags.cc b/crawl-ref/source/tags.cc
index ca54391a56..37396402f3 100644
--- a/crawl-ref/source/tags.cc
+++ b/crawl-ref/source/tags.cc
@@ -2165,7 +2165,7 @@ void tag_construct_level_tiles(writer &th)
marshallShort(th, env.tile_flv[count_x][count_y].wall);
marshallShort(th, env.tile_flv[count_x][count_y].floor);
marshallShort(th, env.tile_flv[count_x][count_y].special);
- marshallShort(th, env.tile_flv[count_x][count_y].ftile);
+ marshallShort(th, env.tile_flv[count_x][count_y].feat);
}
mcache.construct(th);
@@ -2523,7 +2523,7 @@ void tag_read_level_tiles(struct reader &th)
env.tile_flv[x][y].wall = unmarshallShort(th);
env.tile_flv[x][y].floor = unmarshallShort(th);
env.tile_flv[x][y].special = unmarshallShort(th);
- env.tile_flv[x][y].ftile = unmarshallShort(th);
+ env.tile_flv[x][y].feat = unmarshallShort(th);
}
if (ver > TILETAG_PRE_MCACHE)