summaryrefslogtreecommitdiff
path: root/airport.h
diff options
context:
space:
mode:
authordarkvater <darkvater@openttd.org>2004-09-12 21:49:38 +0000
committerdarkvater <darkvater@openttd.org>2004-09-12 21:49:38 +0000
commite295e46e3eccd58626ce2b02aab24b96c025636b (patch)
tree849dacad3729ee4bbd27669505a1932ca301592d /airport.h
parent1b498bca57457a5f46cc43baef225687e312692b (diff)
downloadopenttd-e295e46e3eccd58626ce2b02aab24b96c025636b.tar.xz
(svn r223) -Fix: Const correctness and miscellaneous fixes. Thank you Tron for your diligent fixing of warnings (and some possibly bugs) (Tron)
-CodeLayout: Remove trailing spaces and Windows linebreaks
Diffstat (limited to 'airport.h')
-rw-r--r--airport.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/airport.h b/airport.h
index 71f8981c6..128bd8c3e 100644
--- a/airport.h
+++ b/airport.h
@@ -25,15 +25,15 @@ enum {
// Finite sTate mAchine --> FTA
typedef struct AirportFTAClass {
- byte nofelements; // number of positions the airport consists of
- byte nofterminals; // number of terminals this airport has
- byte nofterminalgroups; // terminals belong to so many groups (MAX is the nofterminals)
- byte nofhelipads; // number of helipads this airport has
- byte nofhelipadgroups; // helipads belong to so many groups (MAX is the nofhelipads)
- byte entry_point; // when an airplane arrives at this airport, enter it at position entry_point
- byte acc_planes; // accept airplanes or helicopters or both
- uint16 *airport_depots; // gives the position of the depots on the airports
- struct AirportFTA *layout; // state machine for airport
+ byte nofelements; // number of positions the airport consists of
+ byte nofterminals; // number of terminals this airport has
+ byte nofterminalgroups; // terminals belong to so many groups (MAX is the nofterminals)
+ byte nofhelipads; // number of helipads this airport has
+ byte nofhelipadgroups; // helipads belong to so many groups (MAX is the nofhelipads)
+ byte entry_point; // when an airplane arrives at this airport, enter it at position entry_point
+ byte acc_planes; // accept airplanes or helicopters or both
+ const uint16 *airport_depots; // gives the position of the depots on the airports
+ struct AirportFTA *layout; // state machine for airport
} AirportFTAClass;
// internal structure used in openttd - Finite sTate mAchine --> FTA