summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/shopping.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/shopping.cc')
-rw-r--r--crawl-ref/source/shopping.cc8
1 files changed, 6 insertions, 2 deletions
diff --git a/crawl-ref/source/shopping.cc b/crawl-ref/source/shopping.cc
index f9aad54aeb..9490345e4d 100644
--- a/crawl-ref/source/shopping.cc
+++ b/crawl-ref/source/shopping.cc
@@ -172,6 +172,10 @@ static void in_a_shop( int shopidx )
cursor_control coff(false);
+#ifdef USE_TILE
+ clrscr();
+#endif
+
const std::string hello = "Welcome to " + shop_name(shop.x, shop.y) + "!";
shop_print(hello.c_str(), 20);
@@ -306,14 +310,14 @@ bool shoptype_identifies_stock(shop_type type)
static void shop_print( const char *shoppy, int sh_lines )
{
- gotoxy(1, sh_lines);
+ gotoxy(1, sh_lines, GOTO_CRT);
cprintf("%s", shoppy);
clear_to_end_of_line();
}
static void more3()
{
- gotoxy(70, 20);
+ gotoxy(70, 20, GOTO_CRT);
cprintf("-more-");
get_ch();
return;