| 715 | } |
| 716 | |
| 717 | static const char * do_extent_building(const tile_context &ctx, const char *s, |
| 718 | bool at_target_pos, |
| 719 | bool *add_size = NULL) { |
| 720 | // use expansion syntax for rectangular or one-tile buildings |
| 721 | if (is_rectangular(ctx)) |
| 722 | return do_block_building(ctx, s, at_target_pos, add_size); |
| 723 | |
| 724 | return s; |
| 725 | } |
| 726 | |
| 727 | static const char * get_bridge_str(df::building *b) { |
| 728 | df::building_bridgest *bridge = virtual_cast<df::building_bridgest>(b); |
no test coverage detected