summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilepick.h
diff options
context:
space:
mode:
authorEino Keskitalo <evktalo@users.sourceforge.net>2010-07-29 22:19:01 +0300
committerEino Keskitalo <evktalo@users.sourceforge.net>2010-07-30 18:08:05 +0300
commit804322c1c6c70c34a238c2aa7ddeba82af1dac84 (patch)
tree4222aae79eb967c1c032cc997664f4d5d429067a /crawl-ref/source/tilepick.h
parent25e948e397746911762b7f2627f9902de9fdfd8e (diff)
downloadcrawl-ref-804322c1c6c70c34a238c2aa7ddeba82af1dac84.tar.gz
crawl-ref-804322c1c6c70c34a238c2aa7ddeba82af1dac84.zip
Fix tiles compile (with rob).
Wizard-casting Detect Items seems to crash when it finds something. Signed-off-by: Eino Keskitalo <evktalo@users.sourceforge.net>
Diffstat (limited to 'crawl-ref/source/tilepick.h')
-rw-r--r--crawl-ref/source/tilepick.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/tilepick.h b/crawl-ref/source/tilepick.h
index d51eaee96a..4e2fe03dd4 100644
--- a/crawl-ref/source/tilepick.h
+++ b/crawl-ref/source/tilepick.h
@@ -20,7 +20,7 @@ struct show_type;
// Tile index lookup from Crawl data.
tileidx_t tileidx_feature(const coord_def &gc);
tileidx_t tileidx_out_of_bounds(int branch);
-void tileidx_from_show(tileidx_t *fg, tileidx_t *bg, const show_type &show);
+void tileidx_from_map_cell(tileidx_t *fg, tileidx_t *bg, const map_cell &cell);
void tileidx_out_of_los(tileidx_t *fg, tileidx_t *bg, const coord_def& gc);
tileidx_t tileidx_monster(const monsters *mon);