summaryrefslogtreecommitdiff
path: root/src/station_cmd.cpp
diff options
context:
space:
mode:
authorcelestar <celestar@openttd.org>2007-02-13 12:34:54 +0000
committercelestar <celestar@openttd.org>2007-02-13 12:34:54 +0000
commit82c696688c9f66c701a2426acc4aed4fd67f2730 (patch)
tree794224f69f4b2276a61e39ad055658d196802fb3 /src/station_cmd.cpp
parent4d0f8bac27accffb002e51ba1d80c5814addc173 (diff)
downloadopenttd-82c696688c9f66c701a2426acc4aed4fd67f2730.tar.xz
(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
Diffstat (limited to 'src/station_cmd.cpp')
-rw-r--r--src/station_cmd.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp
index d994aa7ee..ac597e27b 100644
--- a/src/station_cmd.cpp
+++ b/src/station_cmd.cpp
@@ -2855,8 +2855,9 @@ static const SaveLoad _station_desc[] = {
SLE_CONDNULL(2, 0, 5), // Truck/bus stop status
SLE_CONDNULL(1, 0, 4), // Blocked months
- SLE_CONDVAR(Station, airport_flags, SLE_VAR_U32 | SLE_FILE_U16, 0, 2),
- SLE_CONDVAR(Station, airport_flags, SLE_UINT32, 3, SL_MAX_VERSION),
+ SLE_CONDVAR(Station, airport_flags, SLE_VAR_U64 | SLE_FILE_U16, 0, 2),
+ SLE_CONDVAR(Station, airport_flags, SLE_VAR_U64 | SLE_FILE_U32, 3, 45),
+ SLE_CONDVAR(Station, airport_flags, SLE_UINT64, 46, SL_MAX_VERSION),
SLE_CONDNULL(2, 0, 25), /* Ex last-vehicle */
SLE_CONDVAR(Station, last_vehicle_type, SLE_UINT8, 26, SL_MAX_VERSION),