| 686 | } |
| 687 | |
| 688 | DFHACK_EXPORT std::string DF2CONSOLE(const std::string &in) |
| 689 | { |
| 690 | bool is_utf = console_is_utf8(); |
| 691 | return is_utf ? DF2UTF(in) : in; |
| 692 | } |
| 693 | |
| 694 | DFHACK_EXPORT std::string DF2CONSOLE(DFHack::color_ostream &out, const std::string &in) |
| 695 | { |
nothing calls this directly
no test coverage detected