Changeset 819 for trunk/src/xtra2.c
- Timestamp:
- 03/26/08 12:57:49 (2 years ago)
- Files:
-
- 1 modified
-
trunk/src/xtra2.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/xtra2.c
r816 r819 1961 1961 else 1962 1962 { 1963 p = "Direction ('5' or <click> for target, '*'to re-target, Escape to cancel)? ";1963 p = "Direction ('5' for target, '*' or <click> to re-target, Escape to cancel)? "; 1964 1964 } 1965 1965 … … 1973 1973 case '\xff': 1974 1974 { 1975 target_set_location(ke.mousey + Term->offset_y, ke.mousex + Term->offset_x); 1976 dir = 5; 1975 if (target_set_interactive(TARGET_KILL, KEY_GRID_X(ke), KEY_GRID_Y(ke))) 1976 dir = 5; 1977 1977 1978 break; 1978 1979 } … … 1981 1982 case '*': 1982 1983 { 1983 if (target_set_interactive(TARGET_KILL )) dir = 5;1984 if (target_set_interactive(TARGET_KILL, -1, -1)) dir = 5; 1984 1985 break; 1985 1986 }
