Changeset 67
- Timestamp:
- 04/22/07 23:53:32 (2 years ago)
- Files:
-
- trunk/src/store.c (modified) (3 diffs)
- trunk/src/xtra1.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/store.c
r65 r67 1820 1820 text_out("the store's"); 1821 1821 1822 text_out(" inventory, '"); 1822 text_out(" inventory, or '"); 1823 text_out_c(TERM_L_GREEN, "space"); 1824 text_out("' to advance to the next page;"); 1825 1823 1826 1824 1827 if (rogue_like_commands) … … 2883 2886 /* These two can't intersect! */ 2884 2887 menu.cmd_keys = "\t\n\x10\r{}gIepw"; 2885 menu.selections = "abcfhijklmnoqrstuvxyz1234567890 ";2888 menu.selections = "abcfhijklmnoqrstuvxyz1234567890ABCDEFGHIJKL"; 2886 2889 } 2887 2890 menu.flags |= MN_PAGE; … … 2890 2893 items_region.page_rows = scr_places_y[LOC_ITEMS_END] - scr_places_y[LOC_ITEMS_START] + 1; 2891 2894 menu_init2(&menu, find_menu_skin(MN_SCROLL), cur_menu, &items_region); 2895 if(menu.count >= menu.active.page_rows) { 2896 menu.prompt = "--more--"; 2897 menu_layout(&menu, &menu.boundary); 2898 } 2892 2899 2893 2900 /* Get a selection/action */ trunk/src/xtra1.c
r59 r67 2884 2884 /* Some simple wrapper functions, done somewhat lazily */ 2885 2885 #define PRT_STAT(N, n) \ 2886 void N(int row, int col) { prt_stat(n, row, col); }2886 static void N(int row, int col) { prt_stat(n, row, col); } 2887 2887 2888 2888 PRT_STAT(prt_str, A_STR) … … 2893 2893 PRT_STAT(prt_chr, A_CHR) 2894 2894 2895 void prt_race(int row, int col) { prt_field(p_name + rp_ptr->name, row, col); }2896 void prt_class(int row, int col) { prt_field(c_name + cp_ptr->name, row, col); }2895 static void prt_race(int row, int col) { prt_field(p_name + rp_ptr->name, row, col); } 2896 static void prt_class(int row, int col) { prt_field(c_name + cp_ptr->name, row, col); } 2897 2897 2898 2898 … … 2905 2905 * disappear in the order of lowest to highest importance. 2906 2906 */ 2907 void prt_side(void)2907 static void prt_side(void) 2908 2908 { 2909 2909 struct sidebar_entry
