forked from mirror/OpenTTD
(svn r1881) -Fix: [ 1119308 ] Max passengers / mail variables are now 32 bit
This commit is contained in:
16
town.h
16
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;
|
||||
|
Reference in New Issue
Block a user