summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stash.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-12-24 00:41:55 +0100
committerAdam Borowski <kilobyte@angband.pl>2012-12-27 15:54:52 +0100
commit20c7c20133d6101eeea09193fda4e8036c607565 (patch)
tree11bf0b8886f1c02caab45ed6187e8637c8daeea1 /crawl-ref/source/stash.cc
parentb7904db5ad04c762b8f338d943ecb9611602480d (diff)
downloadcrawl-ref-20c7c20133d6101eeea09193fda4e8036c607565.tar.gz
crawl-ref-20c7c20133d6101eeea09193fda4e8036c607565.zip
Unify menu_colour_item_prefix and filtering_item_prefix.
The only reason for this madness was so searching for "ident" doesn't find identified items.
Diffstat (limited to 'crawl-ref/source/stash.cc')
-rw-r--r--crawl-ref/source/stash.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/stash.cc b/crawl-ref/source/stash.cc
index d54ae174bc..0a16791f57 100644
--- a/crawl-ref/source/stash.cc
+++ b/crawl-ref/source/stash.cc
@@ -2000,8 +2000,7 @@ bool StashTracker::display_search_results(
{
const item_def &first(*res.matching_items.begin());
const int itemcol = menu_colour(first.name(DESC_PLAIN).c_str(),
- menu_colour_item_prefix(first),
- "pickup");
+ item_prefix(first), "pickup");
if (itemcol != -1)
me->colour = itemcol;
}