summaryrefslogtreecommitdiff
path: root/src/script/api/script_types.hpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2017-02-26 19:41:14 +0000
committerfrosch <frosch@openttd.org>2017-02-26 19:41:14 +0000
commitfc4c4d080c5d95d92354cefac4a05082fc417c83 (patch)
treef0e858b503badd205f1f44657c65c5b65df77466 /src/script/api/script_types.hpp
parenta56e2bccd0bbeac71e3fa4c406ae5ec5f8e578a8 (diff)
downloadopenttd-fc4c4d080c5d95d92354cefac4a05082fc417c83.tar.xz
(svn r27757) -Change: Make StringID 32bit.
Diffstat (limited to 'src/script/api/script_types.hpp')
-rw-r--r--src/script/api/script_types.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/api/script_types.hpp b/src/script/api/script_types.hpp
index d3ac70b4d..bd9b7c560 100644
--- a/src/script/api/script_types.hpp
+++ b/src/script/api/script_types.hpp
@@ -98,7 +98,7 @@ typedef uint8 IndustryType; ///< The ID of an industry-type.
typedef OverflowSafeInt64 Money; ///< Money, stored in a 32bit/64bit safe way. For scripts money is always in pounds.
typedef uint16 SignID; ///< The ID of a sign.
typedef uint16 StationID; ///< The ID of a station.
-typedef uint16 StringID; ///< The ID of a string.
+typedef uint32 StringID; ///< The ID of a string.
typedef uint16 SubsidyID; ///< The ID of a subsidy.
typedef uint16 StoryPageID; ///< The ID of a story page.
typedef uint16 StoryPageElementID; ///< The ID of a story page element.