summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tiledgnbuf.h
diff options
context:
space:
mode:
authorEnne Walker <enne.walker@gmail.com>2010-06-22 23:27:03 -0400
committerEnne Walker <enne.walker@gmail.com>2010-07-09 17:39:16 -0700
commitc48615db473a5a3533bfb405f84e350a63eaae74 (patch)
treeec6c0d31a9f01d82eefeba342b42f9600185226b /crawl-ref/source/tiledgnbuf.h
parent3d5919705060b0594d8977c855c878725807c8d3 (diff)
downloadcrawl-ref-c48615db473a5a3533bfb405f84e350a63eaae74.tar.gz
crawl-ref-c48615db473a5a3533bfb405f84e350a63eaae74.zip
Rename tile wave functions to overlay functions.
Diffstat (limited to 'crawl-ref/source/tiledgnbuf.h')
-rw-r--r--crawl-ref/source/tiledgnbuf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/tiledgnbuf.h b/crawl-ref/source/tiledgnbuf.h
index 3ab03b8667..a18c295fbb 100644
--- a/crawl-ref/source/tiledgnbuf.h
+++ b/crawl-ref/source/tiledgnbuf.h
@@ -23,9 +23,9 @@ struct packed_cell
FixedVector<int, MAX_DNGN_OVERLAY> dngn_overlay;
};
-// For a given location, pack any waves (or ink) into the
-// dungeon overlay of the passed in packed_cell.
-void pack_waves(const coord_def &gc, packed_cell *cell);
+// For a given location, pack any waves/ink/wall shadow tiles
+// that require knowledge of the surrounding env cells.
+void pack_cell_overlays(const coord_def &gc, packed_cell *cell);
class dolls_data;
class mcache_entry;