summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemname.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-03-31 22:30:39 +0200
committerAdam Borowski <kilobyte@angband.pl>2011-03-31 22:30:39 +0200
commitacb1ca09f83b2259a56a9beb9ef902f631aa7039 (patch)
tree3bfc1174f51a4a25bcd8c8381626fd3af924bdf1 /crawl-ref/source/itemname.h
parent6422797ca72c9f6bb17ab016e55ae0cf4e873524 (diff)
downloadcrawl-ref-acb1ca09f83b2259a56a9beb9ef902f631aa7039.tar.gz
crawl-ref-acb1ca09f83b2259a56a9beb9ef902f631aa7039.zip
Fix a miscast in is_vowel(). It doesn't yet actually support å or ë yet.
Diffstat (limited to 'crawl-ref/source/itemname.h')
-rw-r--r--crawl-ref/source/itemname.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/itemname.h b/crawl-ref/source/itemname.h
index 2f61522f43..6e72962121 100644
--- a/crawl-ref/source/itemname.h
+++ b/crawl-ref/source/itemname.h
@@ -88,7 +88,7 @@ enum
NDSC_BOOK_SEC = 8,
};
-bool is_vowel(const char chr);
+bool is_vowel(const ucs_t chr);
int property(const item_def &item, int prop_type);
const char* racial_description_string(const item_def& item, bool terse = false);