summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/shopping.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-01-25 10:43:02 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-01-25 10:43:02 +0000
commita0d48b01861f3745455c731078bc2b15187b1050 (patch)
tree2f94da2a304d427bd2859f740ee170c1f1945c00 /crawl-ref/source/shopping.cc
parentbe875338f295eb1a2c97e33e6444907f3b492e7d (diff)
downloadcrawl-ref-a0d48b01861f3745455c731078bc2b15187b1050.tar.gz
crawl-ref-a0d48b01861f3745455c731078bc2b15187b1050.zip
Removed USE_NEW_RANDOM, USE_MACROS.
Removed DOS_TERM, PLAIN_TERM special casery - all platforms get PLAIN_TERM. Better end-of-greedy-explore reporting for items on traps (Erik). Cleaned up find_travel_pos - moved guts of travel pathfinding to travel_pathfind class. Miscellaneous other stuff. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@882 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/shopping.cc')
-rw-r--r--crawl-ref/source/shopping.cc18
1 files changed, 0 insertions, 18 deletions
diff --git a/crawl-ref/source/shopping.cc b/crawl-ref/source/shopping.cc
index 755a2610cf..d4a16c5c33 100644
--- a/crawl-ref/source/shopping.cc
+++ b/crawl-ref/source/shopping.cc
@@ -125,15 +125,6 @@ char in_a_shop( char shoppy, id_arr id )
unsigned char ft;
std::string purchasable;
-#ifdef DOS_TERM
- char buffer[4800];
- gettext(1, 1, 80, 25, buffer);
-#endif
-
-#ifdef DOS_TERM
- window(1, 1, 80, 25);
-#endif
-
clrscr();
int itty = 0;
@@ -292,9 +283,6 @@ char in_a_shop( char shoppy, id_arr id )
shop_uninit_id(shoppy, shop_id);
invent(-1, false);
shop_init_id(shoppy, shop_id);
-#ifdef DOS_TERM
- window(1, 1, 80, 25);
-#endif
goto print_stock;
}
@@ -343,12 +331,6 @@ char in_a_shop( char shoppy, id_arr id )
shop_print("Goodbye!", 20);
more3();
-#ifdef DOS_TERM
- puttext(1, 1, 80, 25, buffer);
- gotoxy(1, 1);
- cprintf(" ");
-#endif
-
shop_uninit_id( shoppy, shop_id );
activate_notes(true);
return 0;