| 371 | } |
| 372 | |
| 373 | staticfn void |
| 374 | lvlfill_solid(schar filling, schar lit) |
| 375 | { |
| 376 | int x, y; |
| 377 | |
| 378 | for (x = 2; x <= gx.x_maze_max; x++) |
| 379 | for (y = 0; y <= gy.y_maze_max; y++) { |
| 380 | if (!set_levltyp_lit(x, y, filling, lit)) |
| 381 | continue; |
| 382 | /* TODO: consolidate this w lspo_map ? */ |
| 383 | levl[x][y].flags = 0; |
| 384 | levl[x][y].horizontal = 0; |
| 385 | levl[x][y].roomno = 0; |
| 386 | levl[x][y].edge = 0; |
| 387 | } |
| 388 | } |
| 389 | |
| 390 | staticfn void |
| 391 | lvlfill_swamp(schar fg, schar bg, schar lit) |
no test coverage detected