summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2017-03-05 14:45:13 +0000
committerfrosch <frosch@openttd.org>2017-03-05 14:45:13 +0000
commitfa8d85b63213288bf653f95a2a189e87f9db1985 (patch)
treef8ef348ab50bcfe978c4b49451c59b9977b6f064 /src
parent5846aa5bfca014baa0f8d54c6a34cf45446c1d98 (diff)
downloadopenttd-fa8d85b63213288bf653f95a2a189e87f9db1985.tar.xz
(svn r27769) -Change: [NewGRF] Extend the DCxx range to D800-DFFF.
Diffstat (limited to 'src')
-rw-r--r--src/newgrf.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/newgrf.cpp b/src/newgrf.cpp
index 7d3944f4d..9c7188ec7 100644
--- a/src/newgrf.cpp
+++ b/src/newgrf.cpp
@@ -550,9 +550,10 @@ static StringID TTDPStringIDToOTTDStringIDMapping(StringID str)
*/
StringID MapGRFStringID(uint32 grfid, StringID str)
{
- if (IsInsideMM(str, 0xDC00, 0xDD00)) {
+ if (IsInsideMM(str, 0xD800, 0xE000)) {
/* General text provided by NewGRF.
- * In the specs this is called the 0xDCxx range (misc presistent texts).
+ * In the specs this is called the 0xDCxx range (misc presistent texts),
+ * but we meanwhile extended the range to 0xD800-0xDFFF.
* Note: We are not involved in the "persistent" business, since we do not store
* any NewGRF strings in savegames. */
return GetGRFStringID(grfid, str);
@@ -5479,7 +5480,7 @@ static void FeatureNewName(ByteReader *buf)
break;
default:
- if (IsInsideMM(id, 0xD000, 0xD400) || IsInsideMM(id, 0xDC00, 0xDD00)) {
+ if (IsInsideMM(id, 0xD000, 0xD400) || IsInsideMM(id, 0xD800, 0xE000)) {
AddGRFString(_cur.grffile->grfid, id, lang, new_scheme, true, name, STR_UNDEFINED);
break;
}
@@ -7239,7 +7240,7 @@ static void TranslateGRFStrings(ByteReader *buf)
byte num_strings = buf->ReadByte();
uint16 first_id = buf->ReadWord();
- if (!((first_id >= 0xD000 && first_id + num_strings <= 0xD400) || (first_id >= 0xDC00 && first_id + num_strings <= 0xDD00))) {
+ if (!((first_id >= 0xD000 && first_id + num_strings <= 0xD400) || (first_id >= 0xD800 && first_id + num_strings <= 0xE000))) {
grfmsg(7, "TranslateGRFStrings: Attempting to set out-of-range string IDs in action 13 (first: 0x%4X, number: 0x%2X)", first_id, num_strings);
return;
}