summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemname.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-05-15 03:31:38 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-05-15 03:31:38 +0000
commit542cf75b89614ad8859fd345230fbd124316a48d (patch)
treee1cb184c42b97b33a46831e00bcaade971152d48 /crawl-ref/source/itemname.cc
parent8424cc75e997bb97497cb3c1241b3267aacf1ecf (diff)
downloadcrawl-ref-542cf75b89614ad8859fd345230fbd124316a48d.tar.gz
crawl-ref-542cf75b89614ad8859fd345230fbd124316a48d.zip
Fix for 1718108, ability_letter_table was meaningless.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1472 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/itemname.cc')
-rw-r--r--crawl-ref/source/itemname.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/itemname.cc b/crawl-ref/source/itemname.cc
index b89363e494..0464cdb998 100644
--- a/crawl-ref/source/itemname.cc
+++ b/crawl-ref/source/itemname.cc
@@ -47,7 +47,7 @@ static bool is_random_name_vowel( char let );
static char retvow(int sed);
static char retlet(int sed);
-static bool is_tried_type( int basetype, int subtype )
+static bool is_tried_type( object_class_type basetype, int subtype )
{
switch ( basetype )
{
@@ -432,7 +432,7 @@ static const char* wand_secondary_string(int s)
case 12: return "worn ";
case 13: return "encrusted ";
case 14: return "runed ";
- case 15: return "sharpened ";
+ case 15: return "sharpened ";
default: return "buggily ";
}
}