| 231 | } |
| 232 | |
| 233 | void DRLG_SetPC() |
| 234 | { |
| 235 | int i, j, x, y, w, h; |
| 236 | |
| 237 | w = 2 * setpc_w; |
| 238 | h = 2 * setpc_h; |
| 239 | x = 2 * setpc_x + 16; |
| 240 | y = 2 * setpc_y + 16; |
| 241 | |
| 242 | for (j = 0; j < h; j++) { |
| 243 | for (i = 0; i < w; i++) { |
| 244 | dFlags[i + x][j + y] |= 8; |
| 245 | } |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | #ifndef SPAWN |
| 250 | void Make_SetPC(int x, int y, int w, int h) |
no outgoing calls
no test coverage detected