Changeset 809
- Timestamp:
- 03/19/08 20:37:18 (4 months ago)
- Files:
-
- trunk/lib/xtra/graf/32x32.bmp (added)
- trunk/lib/xtra/graf/mask32.bmp (added)
- trunk/readme.txt (modified) (1 diff)
- trunk/scripts/pkg_win (modified) (1 diff)
- trunk/src/Makefile.osx (modified) (1 diff)
- trunk/src/store.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/readme.txt
r550 r809 12 12 The Angband website: http://rephial.org/ 13 13 Angband forums: http://angband.oook.cz/forum/ 14 15 32x32 graphics for X11 and Windows:16 http://angband.oook.cz/download/extra/graf-32x32-306.zip17 14 18 15 When upgrading, please read changes.txt! trunk/scripts/pkg_win
r736 r809 73 73 cp ../lib/xtra/graf/8x8.bmp lib/xtra/graf 74 74 cp ../lib/xtra/graf/16x16.bmp lib/xtra/graf 75 cp ../lib/xtra/graf/32x32.bmp lib/xtra/graf 75 76 cp ../lib/xtra/graf/mask.bmp lib/xtra/graf 77 cp ../lib/xtra/graf/mask32.bmp lib/xtra/graf 76 78 77 79 cp ../lib/xtra/sound/sound.cfg lib/xtra/sound trunk/src/Makefile.osx
r692 r809 23 23 APPNAME =$(NAME).app 24 24 EXE =angband 25 COPYRIGHT =1995-200 7Contributors25 COPYRIGHT =1995-2008 Contributors 26 26 27 27 # Some Developer CD tools we need - the standard installation location trunk/src/store.c
r793 r809 1776 1776 text_out_c(TERM_L_GREEN, "l"); 1777 1777 1778 text_out("' examines and ");1779 text_out_c(TERM_L_GREEN, " Enter");1780 1781 if (store_current == STORE_HOME) text_out(" picks up");1782 else text_out(" purchases");1778 text_out("' examines and '"); 1779 text_out_c(TERM_L_GREEN, "p"); 1780 1781 if (store_current == STORE_HOME) text_out("' picks up"); 1782 else text_out("' purchases"); 1783 1783 1784 1784 text_out(" the selected item. '"); 1785 1785 1786 1786 text_out_c(TERM_L_GREEN, "d"); 1787 1787 if (store_current == STORE_HOME) text_out("' drops"); … … 2579 2579 2580 2580 /* Buy */ 2581 case '\xff': 2582 case '\n': 2583 case '\r': 2581 case 'p': 2582 case 'g': 2584 2583 { 2585 2584 /* On successful purchase, redraw */ … … 2854 2853 { 2855 2854 /* These two can't intersect! */ 2856 menu.cmd_keys = "\n\x04\x10\r?=C PdeEiIsTwx\x8B\x8Chl"; /* \x10 = ^p , \x04 = ^D */2857 menu.selections = "abcf gmnopqruvyz1234567890";2855 menu.cmd_keys = "\n\x04\x10\r?=CEIPTdegilpswx\x8B\x8C"; /* \x10 = ^p , \x04 = ^D */ 2856 menu.selections = "abcfmnoqrtuvyz13456790ABDFGH"; 2858 2857 } 2859 2858 … … 2862 2861 { 2863 2862 /* These two can't intersect! */ 2864 menu.cmd_keys = "\n\x010\r?=C bdeEiIklstw\x8B\x8C"; /* \x10 = ^p */2865 menu.selections = "acf ghmnopqruvxyz13456790";2863 menu.cmd_keys = "\n\x010\r?=CEIbdegiklpstw\x8B\x8C"; /* \x10 = ^p */ 2864 menu.selections = "acfhmnoqruvxyz13456790ABDFGH"; 2866 2865 } 2867 2866
