summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/stash.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/crawl-ref/source/stash.cc b/crawl-ref/source/stash.cc
index 264bf86d99..dc51bba7f4 100644
--- a/crawl-ref/source/stash.cc
+++ b/crawl-ref/source/stash.cc
@@ -383,6 +383,13 @@ public:
protected:
void draw_title();
bool process_key(int key);
+
+ void draw_stock_item(int index, const MenuEntry *me) const
+ {
+ // Skip inventory draw function, as tiles code can't currently
+ // handle drawing items that aren't in mitm or in inventory.
+ Menu::draw_stock_item(index, me);
+ }
};
void StashMenu::draw_title()