summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/itemname.h
diff options
context:
space:
mode:
authorShmuale Mark <shm.mark@gmail.com>2014-06-13 10:28:44 -0400
committerShmuale Mark <shm.mark@gmail.com>2014-06-13 10:28:44 -0400
commit7030879d1fdf7cad6f53692c25d204996fd82ad4 (patch)
tree7859b12699a49c99d94e55d86b5451e38a151dc2 /crawl-ref/source/itemname.h
parent8af576bb84461be6a5b5768535cc65038cd960c7 (diff)
downloadcrawl-ref-7030879d1fdf7cad6f53692c25d204996fd82ad4.tar.gz
crawl-ref-7030879d1fdf7cad6f53692c25d204996fd82ad4.zip
Simplify, and correct some messages.
Diffstat (limited to 'crawl-ref/source/itemname.h')
-rw-r--r--crawl-ref/source/itemname.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/itemname.h b/crawl-ref/source/itemname.h
index 44c14580ed..386cc047d9 100644
--- a/crawl-ref/source/itemname.h
+++ b/crawl-ref/source/itemname.h
@@ -101,7 +101,7 @@ bool is_useless_item(const item_def &item, bool temp = false);
string make_name(uint32_t seed, bool all_caps, int maxlen = -1, char start = 0);
-const char* weapon_brand_name(const item_def& item, bool terse, int override_brand = -1);
+const char* weapon_brand_name(const item_def& item, bool terse, int override_brand = 0);
const char* armour_ego_name(const item_def& item, bool terse);
bool item_type_has_ids(object_class_type base_type);
@@ -134,7 +134,7 @@ string base_type_string(const item_def &item, bool known = true);
string sub_type_string(const item_def &item, bool known = true);
-string ego_type_string(const item_def &item, bool terse = false, int override_brand = -1);
+string ego_type_string(const item_def &item, bool terse = false, int override_brand = 0);
const char* potion_type_name(int potiontype); //used in xom.cc
#endif