diff options
Diffstat (limited to 'src/newgrf_text.cpp')
-rw-r--r-- | src/newgrf_text.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/newgrf_text.cpp b/src/newgrf_text.cpp index e0b713982..ae48aa3eb 100644 --- a/src/newgrf_text.cpp +++ b/src/newgrf_text.cpp @@ -309,6 +309,9 @@ char *TranslateTTDPatchCodes(uint32 grfid, const char *str) case 0x0C: d += Utf8Encode(d, SCC_NEWGRF_PRINT_WORD_STATION_NAME); break; + case 0x0D: + d += Utf8Encode(d, SCC_NEWGRF_PRINT_WORD_WEIGHT); + break; default: grfmsg(1, "missing handler for extended format code"); @@ -720,6 +723,7 @@ uint RemapNewGRFStringControlCode(uint scc, char *buf_start, char **buff, const case SCC_NEWGRF_PRINT_HEX_WORD: case SCC_NEWGRF_PRINT_WORD_SPEED: case SCC_NEWGRF_PRINT_WORD_VOLUME: + case SCC_NEWGRF_PRINT_WORD_WEIGHT: case SCC_NEWGRF_PRINT_WORD_STATION_NAME: case SCC_NEWGRF_PRINT_UNSIGNED_WORD: *argv = _newgrf_textrefstack->PopUnsignedWord(); break; @@ -771,6 +775,9 @@ uint RemapNewGRFStringControlCode(uint scc, char *buf_start, char **buff, const case SCC_NEWGRF_PRINT_WORD_VOLUME: return SCC_VOLUME; + case SCC_NEWGRF_PRINT_WORD_WEIGHT: + return SCC_WEIGHT; + case SCC_NEWGRF_PRINT_WORD_STATION_NAME: return SCC_STATION_NAME; |