summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/stash.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/stash.cc')
-rw-r--r--crawl-ref/source/stash.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/stash.cc b/crawl-ref/source/stash.cc
index 428fef0520..815146bb95 100644
--- a/crawl-ref/source/stash.cc
+++ b/crawl-ref/source/stash.cc
@@ -388,7 +388,7 @@ void StashMenu::draw_title()
{
if (title)
{
- gotoxy(1, 1);
+ cgotoxy(1, 1);
textcolor(title->colour);
cprintf( "%s", title->text.c_str());
if (title->quantity)
@@ -1488,7 +1488,7 @@ void StashSearchMenu::draw_title()
{
if (title)
{
- gotoxy(1, 1);
+ cgotoxy(1, 1);
textcolor(title->colour);
cprintf("%d %s%s", title->quantity, title->text.c_str(),
title->quantity > 1? "es" : "");