summaryrefslogtreecommitdiff
path: root/src/saveload/station_sl.cpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-03-10 18:59:40 +0000
committeryexo <yexo@openttd.org>2010-03-10 18:59:40 +0000
commit22081cbd19a95c01bacc7db38d07a4d4a05f1e2c (patch)
tree6d2398a2edca5142421f112b07d662f1a8b32a4f /src/saveload/station_sl.cpp
parent1a28aaf69eef8af1f9946caa5711b88da81ff0aa (diff)
downloadopenttd-22081cbd19a95c01bacc7db38d07a4d4a05f1e2c.tar.xz
(svn r19382) -Fix (r19381): don't break savegame version 139
Diffstat (limited to 'src/saveload/station_sl.cpp')
-rw-r--r--src/saveload/station_sl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/saveload/station_sl.cpp b/src/saveload/station_sl.cpp
index 27131965f..fae4fe5ec 100644
--- a/src/saveload/station_sl.cpp
+++ b/src/saveload/station_sl.cpp
@@ -332,8 +332,8 @@ static const SaveLoad _station_desc[] = {
SLE_REF(Station, truck_stops, REF_ROADSTOPS),
SLE_VAR(Station, dock_tile, SLE_UINT32),
SLE_VAR(Station, airport.tile, SLE_UINT32),
- SLE_CONDVAR(Station, airport.w, SLE_UINT8, 139, SL_MAX_VERSION),
- SLE_CONDVAR(Station, airport.h, SLE_UINT8, 139, SL_MAX_VERSION),
+ SLE_CONDVAR(Station, airport.w, SLE_UINT8, 140, SL_MAX_VERSION),
+ SLE_CONDVAR(Station, airport.h, SLE_UINT8, 140, SL_MAX_VERSION),
SLE_VAR(Station, airport_type, SLE_UINT8),
SLE_VAR(Station, airport_flags, SLE_UINT64),