Changeset 851
- Timestamp:
- 04/28/08 22:19:19 (4 months ago)
- Files:
-
- trunk/src/files.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/files.c
r815 r851 1130 1130 1131 1131 /* 1132 * 'Database'of resistances and abilities to display1132 * List of resistances and abilities to display 1133 1133 */ 1134 1134 #define RES_ROWS 8 1135 struct player_flag_record { 1135 struct player_flag_record 1136 { 1136 1137 const char name[7]; /* Name of resistance/ability */ 1137 1138 byte set; /* Which field this resistance is in { 1 2 3 } */ … … 1139 1140 u32b im_flag; /* corresponding immunity bit, if any. */ 1140 1141 }; 1142 1141 1143 static const struct player_flag_record player_flag_table[RES_ROWS*4] = 1142 1144 { … … 1784 1786 1785 1787 /* Ask */ 1786 if ( get_check(out_val))1788 if (!get_check(out_val)) 1787 1789 return -1; 1788 1790 }
