From c471ff7bd47c870ef79b61c53c1cebdd7e7aa3ba Mon Sep 17 00:00:00 2001 From: Neil Moore Date: Sun, 20 Jul 2014 14:59:06 -0400 Subject: Remove an unused parameter. --- crawl-ref/source/itemname.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/itemname.cc') 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) { -- cgit v1.2.3-54-g00ecf