Changeset 264
- Timestamp:
- 07/04/07 12:01:12 (1 year ago)
- Files:
-
- trunk/src/cmd0.c (modified) (2 diffs)
- trunk/src/store.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/cmd0.c
r248 r264 122 122 { "Identify symbol", '/', do_cmd_query_symbol }, 123 123 { "Character description", 'C', do_cmd_change_name }, 124 { "Interact with options", '=', do_cmd_xxx_options },125 { "Port-specific preferences", '!', do_cmd_port },126 124 { "Check knowledge", '~', do_cmd_knowledge }, 127 125 { "Repeat level feeling", KTRL('F'), do_cmd_feeling }, … … 133 131 static command_type cmd_util[] = 134 132 { 133 { "Interact with options", '=', do_cmd_xxx_options }, 134 { "Port-specific preferences", '!', do_cmd_port }, 135 135 136 { "Save and don't quit", KTRL('S'), do_cmd_save_game }, 136 137 { "Save and quit", KTRL('X'), do_cmd_quit }, trunk/src/store.c
r254 r264 2393 2393 2394 2394 /* Take off equipment */ 2395 case 'T': 2395 2396 case 't': 2396 2397 { … … 2400 2401 2401 2402 /* Destroy an item */ 2403 case KTRL('D'): 2402 2404 case 'k': 2403 2405 { … … 2456 2458 2457 2459 /* Browse a book */ 2460 case 'P': 2458 2461 case 'b': 2459 2462 { … … 2619 2622 menu.count = st_ptr->stock_num; 2620 2623 2621 /* These two can't intersect! */ 2622 menu.cmd_keys = "\n\x010\r?=CdeEiIklstwx\x8B\x8C"; /* \x10 = ^p */ 2623 menu.selections = "abcfghjmnopqruvyz1234567890"; 2624 /* Roguelike */ 2625 if (rogue_like_commands) 2626 { 2627 /* These two can't intersect! */ 2628 menu.cmd_keys = "\n\x04\x10\r?=CPdeEiIsTwx\x8B\x8Chl"; /* \x10 = ^p , \x04 = ^D */ 2629 menu.selections = "abcfghmnopqruvyz1234567890"; 2630 } 2631 2632 /* Original */ 2633 else 2634 { 2635 /* These two can't intersect! */ 2636 menu.cmd_keys = "\n\x010\r?=CbdeEiIklstw\x8B\x8C"; /* \x10 = ^p */ 2637 menu.selections = "acfghmnopqruvxyz13456790"; 2638 } 2624 2639 2625 2640 /* Keep the cursor in range of the stock */
