diff options
author | yexo <yexo@openttd.org> | 2010-08-05 12:00:09 +0000 |
---|---|---|
committer | yexo <yexo@openttd.org> | 2010-08-05 12:00:09 +0000 |
commit | d2f9b87ccd370db55f360995609963b7c2d864df (patch) | |
tree | 648158aa814a6329c6e8ff6f9602985e203996c5 /src/saveload | |
parent | 330c2f979e794f751ccd0ee05256f7b788f13091 (diff) | |
download | openttd-d2f9b87ccd370db55f360995609963b7c2d864df.tar.xz |
(svn r20366) -Codechange: store the rotation of the airport layout in the station struct and use it to rotate hangar tiles
Diffstat (limited to 'src/saveload')
-rw-r--r-- | src/saveload/station_sl.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/saveload/station_sl.cpp b/src/saveload/station_sl.cpp index a57c71c55..31f024cd0 100644 --- a/src/saveload/station_sl.cpp +++ b/src/saveload/station_sl.cpp @@ -337,6 +337,7 @@ static const SaveLoad _station_desc[] = { SLE_VAR(Station, airport.type, SLE_UINT8), SLE_CONDVAR(Station, airport.layout, SLE_UINT8, 145, SL_MAX_VERSION), SLE_VAR(Station, airport.flags, SLE_UINT64), + SLE_CONDVAR(Station, airport.rotation, SLE_UINT8, 145, SL_MAX_VERSION), SLE_VAR(Station, indtype, SLE_UINT8), |