| 312 | } |
| 313 | |
| 314 | staticfn void |
| 315 | solidify_map(void) |
| 316 | { |
| 317 | coordxy x, y; |
| 318 | |
| 319 | for (x = 0; x < COLNO; x++) |
| 320 | for (y = 0; y < ROWNO; y++) |
| 321 | if (IS_STWALL(levl[x][y].typ) && !SpLev_Map[x][y]) |
| 322 | levl[x][y].wall_info |= (W_NONDIGGABLE | W_NONPASSWALL); |
| 323 | } |
| 324 | |
| 325 | /* do a post-level-creation cleanup of map, such as |
| 326 | removing boulders and traps from lava */ |
no outgoing calls
no test coverage detected