Changeset 639

Show
Ignore:
Timestamp:
12/23/07 19:38:50 (1 year ago)
Author:
takkaria
Message:
  • Swap the X & Y detection sizes, and reduce them just a tad.
  • Fix misleading comments in defines.h.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/defines.h

    r636 r639  
    106106 
    107107/* 
    108  * Number of grids in each dungeon (horizontally) 
     108 * Number of grids in each dungeon (vertically) 
    109109 * Must be a multiple of SCREEN_HGT 
    110110 * Must be less or equal to 256 
     
    113113 
    114114/* 
    115  * Number of grids in each dungeon (vertically) 
     115 * Number of grids in each dungeon (horizontally) 
    116116 * Must be a multiple of SCREEN_WID 
    117117 * Must be less or equal to 256 
  • trunk/src/spells2.c

    r638 r639  
    949949 * This is instead of using circular detection spells. 
    950950 */ 
    951 #define DETECT_DIST_X   26     /* Detect 26 grids to the left & right */ 
    952 #define DETECT_DIST_Y   55     /* Detect 55 grids to the top & bottom */ 
     951#define DETECT_DIST_X   52     /* Detect 52 grids to the left & right */ 
     952#define DETECT_DIST_Y   23     /* Detect 23 grids to the top & bottom */ 
    953953 
    954954