summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/showsymb.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-10-16 22:04:19 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-10-16 23:59:14 +0200
commitbfa4b91a9f8be9c6657b37dde307c0e585cd1f38 (patch)
tree6e0624daa6a2c348d19e8224926e407012c94478 /crawl-ref/source/showsymb.h
parent90005585c7206655fe91daba91805d9bad2cb0c1 (diff)
downloadcrawl-ref-bfa4b91a9f8be9c6657b37dde307c0e585cd1f38.tar.gz
crawl-ref-bfa4b91a9f8be9c6657b37dde307c0e585cd1f38.zip
Refactor showsymb a bit.
Diffstat (limited to 'crawl-ref/source/showsymb.h')
-rw-r--r--crawl-ref/source/showsymb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/showsymb.h b/crawl-ref/source/showsymb.h
index 851c2cf2c5..69ea9f56c5 100644
--- a/crawl-ref/source/showsymb.h
+++ b/crawl-ref/source/showsymb.h
@@ -10,7 +10,7 @@ struct cglyph_t
ucs_t ch;
unsigned short col; // XXX: real or unreal depending on context...
- cglyph_t(ucs_t _ch = ' ', unsigned short _col = LIGHTGREY)
+ cglyph_t(ucs_t _ch = 0, unsigned short _col = LIGHTGREY)
: ch(_ch), col(_col)
{
}