summaryrefslogtreecommitdiff
path: root/src/airport.cpp
diff options
context:
space:
mode:
authortron <tron@openttd.org>2007-02-04 13:46:21 +0000
committertron <tron@openttd.org>2007-02-04 13:46:21 +0000
commit6b72228df5b43ad874f458bc7447a6c21dfe418a (patch)
treeaa513ade38eab3747650db2d4cf98178d4a68930 /src/airport.cpp
parentccffde6d7e3522c0373b686ccb64c68014ed40a5 (diff)
downloadopenttd-6b72228df5b43ad874f458bc7447a6c21dfe418a.tar.xz
(svn r8582) -Fix
Reorder the attributes of some structs to reduce their size
Diffstat (limited to 'src/airport.cpp')
-rw-r--r--src/airport.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/airport.cpp b/src/airport.cpp
index cee9257fb..2d118e1cf 100644
--- a/src/airport.cpp
+++ b/src/airport.cpp
@@ -190,12 +190,12 @@ AirportFTAClass::AirportFTAClass(
uint size_y_
) :
moving_data(moving_data_),
- nofelements(AirportGetNofElements(apFA)),
terminals(terminals_),
helipads(helipads_),
- entry_point(entry_point_),
airport_depots(depots_),
nof_depots(nof_depots_),
+ nofelements(AirportGetNofElements(apFA)),
+ entry_point(entry_point_),
size_x(size_x_),
size_y(size_y_)
{