summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/showsymb.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-10-16 23:43:58 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-10-16 23:59:14 +0200
commit5eec67434e2cfa8fc198758ce3a9c3fde20b4f1b (patch)
treec184122190b0e4cad28af50a15a54c99d21a76fe /crawl-ref/source/showsymb.h
parentc7bc4ef4601da77ecc7c4df6ead6fc068dc2f003 (diff)
downloadcrawl-ref-5eec67434e2cfa8fc198758ce3a9c3fde20b4f1b.tar.gz
crawl-ref-5eec67434e2cfa8fc198758ce3a9c3fde20b4f1b.zip
Get rid of all but one uses of mon_display.
It's a duplicate of cglyph_t with an additional field that's only used once.
Diffstat (limited to 'crawl-ref/source/showsymb.h')
-rw-r--r--crawl-ref/source/showsymb.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/crawl-ref/source/showsymb.h b/crawl-ref/source/showsymb.h
index 69ea9f56c5..2bbec466c6 100644
--- a/crawl-ref/source/showsymb.h
+++ b/crawl-ref/source/showsymb.h
@@ -5,16 +5,6 @@
#include "mon-info.h"
struct map_cell;
-struct cglyph_t
-{
- ucs_t ch;
- unsigned short col; // XXX: real or unreal depending on context...
-
- cglyph_t(ucs_t _ch = 0, unsigned short _col = LIGHTGREY)
- : ch(_ch), col(_col)
- {
- }
-};
string glyph_to_tagstr(const cglyph_t& g);