From 3c6fb88a095aa5404807ce26bb3a1529b25f5ffb Mon Sep 17 00:00:00 2001 From: yexo Date: Mon, 21 Jun 2010 16:49:54 +0000 Subject: [PATCH] (svn r20004) -Fix: [NewGRF] stringcodes 82, 83 and 84 weren't properly converted to openttd codes so they didn't work --- src/newgrf_text.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/newgrf_text.cpp b/src/newgrf_text.cpp index 8042fd042f..112a3b2cfb 100644 --- a/src/newgrf_text.cpp +++ b/src/newgrf_text.cpp @@ -245,7 +245,7 @@ char *TranslateTTDPatchCodes(uint32 grfid, const char *str) } case 0x82: case 0x83: - case 0x84: d += Utf8Encode(d, SCC_NEWGRF_PRINT_WORD_SPEED + c - 0x82); break; + case 0x84: d += Utf8Encode(d, SCC_NEWGRF_PRINT_DATE + c - 0x82); break; case 0x85: d += Utf8Encode(d, SCC_NEWGRF_DISCARD_WORD); break; case 0x86: d += Utf8Encode(d, SCC_NEWGRF_ROTATE_TOP_4_WORDS); break; case 0x87: d += Utf8Encode(d, SCC_NEWGRF_PRINT_WORD_LITRES); break;