summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/env.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-12-14 21:34:57 +0100
committerAdam Borowski <kilobyte@angband.pl>2011-12-14 22:10:06 +0100
commit660a66c471d8ed81a4078849baa250cd21d02d87 (patch)
treec9fc1147d6ae700e4ca21a861ddafcce4b2bd49a /crawl-ref/source/env.h
parentff7caa149e7d49c55f0d971a8bf78fad86923546 (diff)
downloadcrawl-ref-660a66c471d8ed81a4078849baa250cd21d02d87.tar.gz
crawl-ref-660a66c471d8ed81a4078849baa250cd21d02d87.zip
Make tile enums available in console builds.
The actual data isn't loaded or preserved yet.
Diffstat (limited to 'crawl-ref/source/env.h')
-rw-r--r--crawl-ref/source/env.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/crawl-ref/source/env.h b/crawl-ref/source/env.h
index 713b663580..7b4dc16a2d 100644
--- a/crawl-ref/source/env.h
+++ b/crawl-ref/source/env.h
@@ -50,7 +50,6 @@ struct crawl_environment
FixedArray< map_cell, GXM, GYM > map_shadow;
std::set<coord_def> visible;
-#ifdef USE_TILE
// indexed by grid coords
FixedArray<tile_fg_store, GXM, GYM> tile_bk_fg;
FixedArray<tileidx_t, GXM, GYM> tile_bk_bg;
@@ -60,7 +59,6 @@ struct crawl_environment
FixedArray<tileidx_t, ENV_SHOW_DIAMETER, ENV_SHOW_DIAMETER> tile_bg;
tile_flavour tile_default;
std::vector<std::string> tile_names;
-#endif
FixedVector< cloud_struct, MAX_CLOUDS > cloud; // cloud list
short cloud_no;