summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemname.cc
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2014-07-20 14:59:06 -0400
committerNeil Moore <neil@s-z.org>2014-07-20 15:00:55 -0400
commitc471ff7bd47c870ef79b61c53c1cebdd7e7aa3ba (patch)
tree03aa7134aa7781337f41ada40a4a0769be072397 /crawl-ref/source/itemname.cc
parente4e15622d6dc5ef54af4f73848613013e2393a3b (diff)
downloadcrawl-ref-c471ff7bd47c870ef79b61c53c1cebdd7e7aa3ba.tar.gz
crawl-ref-c471ff7bd47c870ef79b61c53c1cebdd7e7aa3ba.zip
Remove an unused parameter.
Diffstat (limited to 'crawl-ref/source/itemname.cc')
-rw-r--r--crawl-ref/source/itemname.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/itemname.cc b/crawl-ref/source/itemname.cc
index 0158b9e0c5..f83b372cb1 100644
--- a/crawl-ref/source/itemname.cc
+++ b/crawl-ref/source/itemname.cc
@@ -1130,12 +1130,12 @@ static const char* rod_type_name(int type)
}
}
-string base_type_string(const item_def &item, bool known)
+string base_type_string(const item_def &item)
{
- return base_type_string(item.base_type, known);
+ return base_type_string(item.base_type);
}
-string base_type_string(object_class_type type, bool known)
+string base_type_string(object_class_type type)
{
switch (type)
{