Mercurial > hg > openttd
comparison src/station_cmd.cpp @ 5995:c72b07427c7f draft
(svn r8705) -Codechange: Increased the number of airport blocks to 64. This involves changing the enum of airport blocks to a static const uint64 as SOME platforms do not support 64-bit enums
author | celestar <celestar@openttd.org> |
---|---|
date | Tue, 13 Feb 2007 12:34:54 +0000 |
parents | 1b793d99b5ba |
children | ce1790a98063 |
comparison
equal
deleted
inserted
replaced
5994:f7885ece4c67 | 5995:c72b07427c7f |
---|---|
2853 SLE_VAR(Station, airport_type, SLE_UINT8), | 2853 SLE_VAR(Station, airport_type, SLE_UINT8), |
2854 | 2854 |
2855 SLE_CONDNULL(2, 0, 5), // Truck/bus stop status | 2855 SLE_CONDNULL(2, 0, 5), // Truck/bus stop status |
2856 SLE_CONDNULL(1, 0, 4), // Blocked months | 2856 SLE_CONDNULL(1, 0, 4), // Blocked months |
2857 | 2857 |
2858 SLE_CONDVAR(Station, airport_flags, SLE_VAR_U32 | SLE_FILE_U16, 0, 2), | 2858 SLE_CONDVAR(Station, airport_flags, SLE_VAR_U64 | SLE_FILE_U16, 0, 2), |
2859 SLE_CONDVAR(Station, airport_flags, SLE_UINT32, 3, SL_MAX_VERSION), | 2859 SLE_CONDVAR(Station, airport_flags, SLE_VAR_U64 | SLE_FILE_U32, 3, 45), |
2860 SLE_CONDVAR(Station, airport_flags, SLE_UINT64, 46, SL_MAX_VERSION), | |
2860 | 2861 |
2861 SLE_CONDNULL(2, 0, 25), /* Ex last-vehicle */ | 2862 SLE_CONDNULL(2, 0, 25), /* Ex last-vehicle */ |
2862 SLE_CONDVAR(Station, last_vehicle_type, SLE_UINT8, 26, SL_MAX_VERSION), | 2863 SLE_CONDVAR(Station, last_vehicle_type, SLE_UINT8, 26, SL_MAX_VERSION), |
2863 | 2864 |
2864 // Was custom station class and id | 2865 // Was custom station class and id |