Changeset 364
- Timestamp:
- 07/19/07 18:00:35 (1 year ago)
- Files:
-
- branches/angband-3.0.8/src/h-basic.h (modified) (1 diff)
- branches/angband-3.0.8/src/xtra2.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/angband-3.0.8/src/h-basic.h
r245 r364 147 147 # include <pwd.h> 148 148 # include <sys/stat.h> 149 #define __USE_GNU 149 150 # include <unistd.h> 150 151 #endif branches/angband-3.0.8/src/xtra2.c
r263 r364 2866 2866 if ((cave_m_idx[y][x] > 0) && target_able(cave_m_idx[y][x])) 2867 2867 { 2868 my_strcpy(info, " q,t,p,o,+,-,<dir>", sizeof(info));2868 my_strcpy(info, "g,q,t,p,o,+,-,<dir>, <click>", sizeof(info)); 2869 2869 } 2870 2870 … … 2872 2872 else 2873 2873 { 2874 my_strcpy(info, " q,p,o,+,-,<dir>", sizeof(info));2874 my_strcpy(info, "g,q,p,o,+,-,<dir>, <click>", sizeof(info)); 2875 2875 } 2876 2876 … … 3034 3034 { 3035 3035 /* Default prompt */ 3036 my_strcpy(info, " q,t,p,m,+,-,<dir>", sizeof(info));3036 my_strcpy(info, "g,q,t,p,m,+,-,<dir>, <click>", sizeof(info)); 3037 3037 3038 3038 /* Describe and Prompt (enable "TARGET_LOOK") */ … … 3244 3244 if (!target_okay()) 3245 3245 { 3246 p = "Direction ('*' to choose a target, Escape to cancel)? ";3246 p = "Direction ('*' or <click> to choose a target, Escape to cancel)? "; 3247 3247 } 3248 3248 else 3249 3249 { 3250 p = "Direction ('5' for target, '*' to re-target, Escape to cancel)? ";3250 p = "Direction ('5' or <click>for target, '*' to re-target, Escape to cancel)? "; 3251 3251 } 3252 3252 … … 3363 3363 { 3364 3364 /* Choose a prompt */ 3365 p = "Direction (Escape to cancel)? ";3365 p = "Direction or <click> (Escape to cancel)? "; 3366 3366 3367 3367 /* Get a command (or Cancel) */
