| 644 | } |
| 645 | |
| 646 | static const char * get_constructed_floor_str(df::tiletype *tt) { |
| 647 | if (tileSpecial(*tt) != df::tiletype_special::TRACK) |
| 648 | return "Cf"; |
| 649 | return get_constructed_track_str(tt, "track"); |
| 650 | } |
| 651 | |
| 652 | static const char * get_constructed_ramp_str(df::tiletype *tt) { |
| 653 | if (tileSpecial(*tt) != df::tiletype_special::TRACK) |
no test coverage detected