(svn r1881) -Fix: [ 1119308 ] Max passengers / mail variables are now 32 bit

This commit is contained in:
celestar
2005-02-17 10:56:19 +00:00
parent 7678a937e4
commit fe6f9e9a65
6 changed files with 37 additions and 20 deletions

16
town.h
View File

@@ -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;