mirror of https://github.com/OpenTTD/OpenTTD
(svn r22882) -Fix [FS#4758]: [NewGRF] DCxx text references via the textstack are not allowed, but caused crash.
parent
5ccd091fd1
commit
0dca1941ad
|
@ -57,7 +57,7 @@ StringID TTDPStringIDToOTTDStringIDMapping(StringID str)
|
||||||
};
|
};
|
||||||
|
|
||||||
/* A string straight from a NewGRF; no need to remap this as it's already mapped. */
|
/* A string straight from a NewGRF; no need to remap this as it's already mapped. */
|
||||||
if (IsInsideMM(str, 0xD000, 0xD7FF) || IsInsideMM(str, 0xDC00, 0xDCFF)) return str;
|
if (IsInsideMM(str, 0xD000, 0xD7FF)) return str;
|
||||||
|
|
||||||
#define TEXTID_TO_STRINGID(begin, end, stringid) if (str >= begin && str <= end) return str + (stringid - begin)
|
#define TEXTID_TO_STRINGID(begin, end, stringid) if (str >= begin && str <= end) return str + (stringid - begin)
|
||||||
/* We have some changes in our cargo strings, resulting in some missing. */
|
/* We have some changes in our cargo strings, resulting in some missing. */
|
||||||
|
|
Loading…
Reference in New Issue