From cce90fadce5dca04e3000cf488e619975bddd8ae Mon Sep 17 00:00:00 2001 From: zelgadis Date: Sat, 22 Sep 2007 03:12:44 +0000 Subject: Oops, forgot about database case insensitivity again. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2178 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/describe.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'crawl-ref/source/describe.cc') diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc index c0d50a87e9..f6e1e51e30 100644 --- a/crawl-ref/source/describe.cc +++ b/crawl-ref/source/describe.cc @@ -3595,7 +3595,10 @@ void describe_monsters(monsters& mons) // -peterb 4/14/07 description << getLongDescription(mons.name(DESC_PLAIN)); - unsigned char symbol = get_monster_data(mons.type)->showchar; + std::string symbol = ""; + symbol += get_monster_data(mons.type)->showchar; + if (isupper(symbol[0])) + symbol = "cap-" + symbol; std::string symbol_prefix = "__"; symbol_prefix += symbol; -- cgit v1.2.3-54-g00ecf