| 650 | } |
| 651 | |
| 652 | static const char * get_constructed_ramp_str(df::tiletype *tt) { |
| 653 | if (tileSpecial(*tt) != df::tiletype_special::TRACK) |
| 654 | return "Cr"; |
| 655 | return get_constructed_track_str(tt, "trackramp"); |
| 656 | } |
| 657 | |
| 658 | static const char * get_tile_construct(color_ostream &out, const df::coord &pos, const tile_context &ctx) { |
| 659 | if (ctx.b && ctx.b->getType() == building_type::Construction) |
no test coverage detected