| 290 | }; |
| 291 | |
| 292 | static df::world_region_details *get_details(df::world_data *data, df::coord2d pos) |
| 293 | { |
| 294 | int d_idx = linear_index(data->midmap_data.region_details, &df::world_region_details::pos, pos); |
| 295 | return vector_get(data->midmap_data.region_details, d_idx); |
| 296 | } |
| 297 | |
| 298 | bool estimate_underground(color_ostream &out, EmbarkTileLayout &tile, df::world_region_details *details, int x, int y) |
| 299 | { |
no test coverage detected