| 385 | } |
| 386 | |
| 387 | boolean |
| 388 | unmap_invisible(coordxy x, coordxy y) |
| 389 | { |
| 390 | if (isok(x,y) && glyph_is_invisible(levl[x][y].glyph)) { |
| 391 | unmap_object(x, y); |
| 392 | newsym(x, y); |
| 393 | return TRUE; |
| 394 | } |
| 395 | return FALSE; |
| 396 | } |
| 397 | |
| 398 | |
| 399 | /* |
no test coverage detected