summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/showsymb.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-07-30 10:07:37 +0200
committerAdam Borowski <kilobyte@angband.pl>2010-07-30 18:45:15 +0200
commit43dba213523dc47b1ea8bb8b636a12e4ee146387 (patch)
treed9fe1863d152d75eeb95b427ad733ca64818d81a /crawl-ref/source/showsymb.h
parent685c36f53f57da6b6b0c6f8987cdad031732d0d7 (diff)
downloadcrawl-ref-43dba213523dc47b1ea8bb8b636a12e4ee146387.tar.gz
crawl-ref-43dba213523dc47b1ea8bb8b636a12e4ee146387.zip
Fix several broken item symbol overrides.
Diffstat (limited to 'crawl-ref/source/showsymb.h')
-rw-r--r--crawl-ref/source/showsymb.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/showsymb.h b/crawl-ref/source/showsymb.h
index ba096a7405..1deb2c4d00 100644
--- a/crawl-ref/source/showsymb.h
+++ b/crawl-ref/source/showsymb.h
@@ -7,14 +7,14 @@
struct map_cell;
struct glyph
{
- unsigned ch;
+ wchar_t ch;
unsigned short col; // XXX: real or unreal depending on context...
};
std::string glyph_to_tagstr(const glyph& g);
-unsigned get_feat_symbol(dungeon_feature_type feat);
-unsigned get_item_symbol(show_item_type it);
+wchar_t get_feat_symbol(dungeon_feature_type feat);
+wchar_t get_item_symbol(show_item_type it);
glyph get_item_glyph(const item_def *item);
glyph get_mons_glyph(const monster_info& mi, bool realcol=true);