summaryrefslogtreecommitdiff
path: root/town.h
diff options
context:
space:
mode:
authorcelestar <celestar@openttd.org>2005-02-17 10:56:19 +0000
committercelestar <celestar@openttd.org>2005-02-17 10:56:19 +0000
commitfe6f9e9a658be8198b3ee149d8f50c6e2900111d (patch)
treec51545fe02021db0bfb157ca313142d0813a3bdb /town.h
parent7678a937e4356b4b3b25290edd364877068db77e (diff)
downloadopenttd-fe6f9e9a658be8198b3ee149d8f50c6e2900111d.tar.xz
(svn r1881) -Fix: [ 1119308 ] Max passengers / mail variables are now 32 bit
Diffstat (limited to 'town.h')
-rw-r--r--town.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/town.h b/town.h
index ddd30b960..b4a588de1 100644
--- a/town.h
+++ b/town.h
@@ -35,14 +35,14 @@ struct Town {
int16 ratings[MAX_PLAYERS];
// Maximum amount of passengers and mail that can be transported.
- uint16 max_pass;
- uint16 max_mail;
- uint16 new_max_pass;
- uint16 new_max_mail;
- uint16 act_pass;
- uint16 act_mail;
- uint16 new_act_pass;
- uint16 new_act_mail;
+ uint32 max_pass;
+ uint32 max_mail;
+ uint32 new_max_pass;
+ uint32 new_max_mail;
+ uint32 act_pass;
+ uint32 act_mail;
+ uint32 new_act_pass;
+ uint32 new_act_mail;
// Amount of passengers that were transported.
byte pct_pass_transported;