| 679 | } |
| 680 | |
| 681 | static pair<uint32_t, uint32_t> get_building_size(const df::building *b) { |
| 682 | return pair<uint32_t, uint32_t>(b->x2 - b->x1 + 1, b->y2 - b->y1 + 1); |
| 683 | } |
| 684 | |
| 685 | static const char * if_pretty(const tile_context &ctx, const char *c) { |
| 686 | return ctx.pretty ? c : NULL; |
no outgoing calls
no test coverage detected