summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fprop.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/fprop.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/fprop.h')
-rw-r--r--crawl-ref/source/fprop.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/crawl-ref/source/fprop.h b/crawl-ref/source/fprop.h
index ce65e22dc7..7f2c0488e0 100644
--- a/crawl-ref/source/fprop.h
+++ b/crawl-ref/source/fprop.h
@@ -27,11 +27,9 @@ enum feature_property_type
FPROP_NO_JIYVA = (1 << 14),
// Permanent, unlike map memory.
FPROP_SEEN_OR_NOEXP = (1 << 15),
-#ifdef USE_TILE
FPROP_BLOOD_WEST = (1 << 16),
FPROP_BLOOD_NORTH = (1 << 17),
FPROP_BLOOD_EAST = FPROP_BLOOD_WEST | FPROP_BLOOD_NORTH,
-#endif
};
@@ -42,9 +40,6 @@ bool is_moldy(const coord_def & p);
bool glowing_mold(const coord_def & p);
void remove_mold(const coord_def & p);
feature_property_type str_to_fprop(const std::string &str);
-
-#ifdef USE_TILE
char blood_rotation(const coord_def & p);
-#endif
#endif