| 203 | #define TYP_CANNOT_MATCH(typ) ((typ) == MAX_TYPE || (typ) == INVALID_TYPE) |
| 204 | |
| 205 | void |
| 206 | reset_xystart_size(void) |
| 207 | { |
| 208 | gx.xstart = 1; /* column [0] is off limits */ |
| 209 | gy.ystart = 0; |
| 210 | gx.xsize = COLNO - 1; /* 1..COLNO-1 */ |
| 211 | gy.ysize = ROWNO; /* 0..ROWNO-1 */ |
| 212 | } |
| 213 | |
| 214 | /* Does typ match with levl[][].typ, considering special types |
| 215 | MATCH_WALL and MAX_TYPE (aka transparency)? */ |
no outgoing calls
no test coverage detected