Changeset 248
- Timestamp:
- 07/02/07 10:02:29 (1 year ago)
- Files:
-
- trunk/src/cmd0.c (modified) (1 diff)
- trunk/src/defines.h (modified) (2 diffs)
- trunk/src/tables.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/cmd0.c
r238 r248 333 333 int x, y; 334 334 335 if (!mouse_movement) return; 336 335 337 y = KEY_GRID_Y(p_ptr->command_cmd_ex); 336 338 x = KEY_GRID_X(p_ptr->command_cmd_ex); trunk/src/defines.h
r245 r248 2428 2428 #define OPT_hide_squelchable 75 2429 2429 #define OPT_auto_squelch 76 2430 #define OPT_mouse_movement 77 2430 2431 2431 2432 … … 2518 2519 #define hide_squelchable OPTION(hide_squelchable) 2519 2520 #define auto_squelch OPTION(auto_squelch) 2521 #define mouse_movement OPTION(mouse_movement) 2520 2522 2521 2523 #define birth_maximize OPTION(birth_maximize) trunk/src/tables.c
r245 r248 1474 1474 "hide_squelchable", /* OPT_hide_squelchable */ 1475 1475 "auto_squelch", /* OPT_auto_squelch */ 1476 NULL, /* xxx*/1476 "mouse_movement", /* OPT_mouse_movement */ 1477 1477 NULL, /* xxx */ 1478 1478 NULL, /* xxx */ … … 1738 1738 "Hide items set as squelchable", /* OPT_hide_squelchable */ 1739 1739 "Destroy items marked as squelch automatically", /* OPT_auto_squelch */ 1740 NULL, /* xxx*/1740 "Allow mouse clicks to move the player", /* OPT_mouse_movement */ 1741 1741 NULL, /* xxx */ 1742 1742 NULL, /* xxx */ … … 2002 2002 FALSE, /* OPT_hide_squelchable */ 2003 2003 FALSE, /* OPT_auto_squelch */ 2004 FALSE, /* xxx*/2004 FALSE, /* OPT_mouse_movement */ 2005 2005 FALSE, /* xxx */ 2006 2006 FALSE, /* xxx */ … … 2200 2200 OPT_easy_alter, 2201 2201 OPT_easy_open, 2202 OPT_ NONE,2202 OPT_mouse_movement, 2203 2203 OPT_NONE, 2204 2204 OPT_NONE,
