From 4d0788ea364602c8435b13892828dbd259450cae Mon Sep 17 00:00:00 2001 From: dshaligram Date: Tue, 8 Sep 2009 10:26:26 +0000 Subject: [2854085] Qualify multiple matches in a stack with (+extra) instead of (n) in stash search listings. Still somewhat confusing. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10645 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/stash.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/stash.cc') diff --git a/crawl-ref/source/stash.cc b/crawl-ref/source/stash.cc index 011526c1a5..f795d2c1b0 100644 --- a/crawl-ref/source/stash.cc +++ b/crawl-ref/source/stash.cc @@ -1883,7 +1883,7 @@ bool StashTracker::display_search_results( << res.match; if (res.matches > 1 && res.count > 1) - matchtitle << " (" << res.matches << ")"; + matchtitle << " (+" << (res.matches - 1) << ")"; MenuEntry *me = new MenuEntry(matchtitle.str(), MEL_ITEM, 1, hotkey); me->data = &res; -- cgit v1.2.3-54-g00ecf