| 637 | } |
| 638 | |
| 639 | static const char * get_constructed_wall_str(df::coord pos) { |
| 640 | df::construction *c = Constructions::findAtTile(pos); |
| 641 | if (!c || !(c->flags.bits.reinforced)) |
| 642 | return "Cw"; |
| 643 | return "CW"; |
| 644 | } |
| 645 | |
| 646 | static const char * get_constructed_floor_str(df::tiletype *tt) { |
| 647 | if (tileSpecial(*tt) != df::tiletype_special::TRACK) |
no outgoing calls
no test coverage detected