summaryrefslogtreecommitdiff
path: root/src/company_base.h
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/company_base.h
parenta56e2bccd0bbeac71e3fa4c406ae5ec5f8e578a8 (diff)
downloadopenttd-fc4c4d080c5d95d92354cefac4a05082fc417c83.tar.xz
(svn r27757) -Change: Make StringID 32bit.
Diffstat (limited to 'src/company_base.h')
-rw-r--r--src/company_base.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/company_base.h b/src/company_base.h
index 001776121..4d76e6251 100644
--- a/src/company_base.h
+++ b/src/company_base.h
@@ -52,10 +52,10 @@ extern CompanyPool _company_pool;
/** Statically loadable part of Company pool item */
struct CompanyProperties {
uint32 name_2; ///< Parameter of #name_1.
- uint16 name_1; ///< Name of the company if the user did not change it.
+ StringID name_1; ///< Name of the company if the user did not change it.
char *name; ///< Name of the company if the user changed it.
- uint16 president_name_1; ///< Name of the president if the user did not change it.
+ StringID president_name_1; ///< Name of the president if the user did not change it.
uint32 president_name_2; ///< Parameter of #president_name_1
char *president_name; ///< Name of the president if the user changed it.