1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-15 10:39:10 +00:00

(svn r124) Prepared code for removal of block_months variable in next major savegame version

This commit is contained in:
dominik
2004-08-23 21:29:25 +00:00
parent 4c0f46b5c7
commit 74852c4652
4 changed files with 7 additions and 5 deletions

View File

@@ -106,7 +106,7 @@ typedef struct {
byte facilities;
byte airport_type;
byte truck_stop_status, bus_stop_status;
byte blocked_months;
byte blocked_months_obsolete;
byte unk85;
uint16 airport_flags;
uint16 last_vehicle;
@@ -708,7 +708,7 @@ static void FixStation(Station *s, OldStation *o, int num)
s->airport_type = o->airport_type;
s->truck_stop_status = o->truck_stop_status;
s->bus_stop_status = o->bus_stop_status;
s->blocked_months = o->blocked_months;
s->blocked_months_obsolete = o->blocked_months_obsolete;
s->airport_flags = o->airport_flags;
s->last_vehicle = o->last_vehicle;
} while (s++,o++,--num);