| 142 | } |
| 143 | |
| 144 | static void destroyBurrowMask(df::block_burrow *mask) |
| 145 | { |
| 146 | if (!mask) return; |
| 147 | |
| 148 | auto link = mask->link; |
| 149 | |
| 150 | link->prev->next = link->next; |
| 151 | if (link->next) |
| 152 | link->next->prev = link->prev; |
| 153 | delete link; |
| 154 | |
| 155 | delete mask; |
| 156 | } |
| 157 | |
| 158 | void Burrows::clearTiles(df::burrow *burrow) |
| 159 | { |
no outgoing calls
no test coverage detected