diff options
author | maedhros <maedhros@openttd.org> | 2007-12-27 20:49:44 +0000 |
---|---|---|
committer | maedhros <maedhros@openttd.org> | 2007-12-27 20:49:44 +0000 |
commit | ad061e6d6050540f80d1b2adaf802f181964ce16 (patch) | |
tree | 4108ce157b8f49303a4b65a8b81f46d350fa5d41 /src | |
parent | 716ef177572d868d60da49ad08f113846b107cbe (diff) | |
download | openttd-ad061e6d6050540f80d1b2adaf802f181964ce16.tar.xz |
(svn r11712) -Fix (r9315): Add more house string id ranges to MapGRFStringID so NewGRFs use the proper string ids.
Diffstat (limited to 'src')
-rw-r--r-- | src/newgrf.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/newgrf.cpp b/src/newgrf.cpp index 167f49288..67bad76c5 100644 --- a/src/newgrf.cpp +++ b/src/newgrf.cpp @@ -272,12 +272,12 @@ StringID MapGRFStringID(uint32 grfid, StringID str) TEXID_TO_STRINGID(0x006E, 0x008D, STR_QUANTITY_NOTHING); TEXID_TO_STRINGID(0x008E, 0x00AD, STR_ABBREV_NOTHING); - /* Map building names according to our lang file changes - * 0x200F = Tall Office Block, first house name in the original data, the one that TTDPatch stil uses - * 0x201F = Old houses is the last house name. - * OpenTTD does not have exactly the same order aymore, so, the code below allows - * to compensate for the difference */ + /* Map building names according to our lang file changes. There are several + * ranges of house ids, all of which need to be remapped to allow newgrfs + * to use original house names. */ TEXID_TO_STRINGID(0x200F, 0x201F, STR_200F_TALL_OFFICE_BLOCK); + TEXID_TO_STRINGID(0x2036, 0x2041, STR_2036_COTTAGES); + TEXID_TO_STRINGID(0x2059, 0x205C, STR_2059_IGLOO); /* Same thing for industries, since the introduction of 4 new strings above STR_482A_PRODUCTION_LAST_MONTH */ TEXID_TO_STRINGID(0x482A, 0x483B, STR_482A_PRODUCTION_LAST_MONTH); |