| 746 | } |
| 747 | |
| 748 | void PushDWord(uint32_t dw) |
| 749 | { |
| 750 | this->PushWord(GB(dw, 16, 16)); |
| 751 | this->PushWord(GB(dw, 0, 16)); |
| 752 | } |
| 753 | }; |
| 754 | |
| 755 | static void HandleNewGRFStringControlCodes(std::string_view str, TextRefStack &stack, std::vector<StringParameter> ¶ms); |
no test coverage detected