summaryrefslogtreecommitdiff
path: root/airport_movement.h
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2006-10-13 23:08:55 +0000
committerDarkvater <darkvater@openttd.org>2006-10-13 23:08:55 +0000
commit9c508259a93132b1176df7ec7633e3c112a50fc7 (patch)
tree27aa1f9683597d8851d4ee020abe01f964bb8c96 /airport_movement.h
parentc84ffc2f1f97d52873430ba40552fdc99dcadc27 (diff)
downloadopenttd-9c508259a93132b1176df7ec7633e3c112a50fc7.tar.xz
(svn r6768) -Cleanup: For airports change *Airport to *apc (variable naming coding style
conformance (AirportFTAClass), *FA to *apFA (to better reflect its type AirportFTAbuildup), and ->next_in_chain into ->next.
Diffstat (limited to 'airport_movement.h')
-rw-r--r--airport_movement.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/airport_movement.h b/airport_movement.h
index 2fa728509..5379fc8cb 100644
--- a/airport_movement.h
+++ b/airport_movement.h
@@ -7,10 +7,10 @@
// state machine input struct (from external file, etc.)
// Finite sTate mAchine --> FTA
typedef struct AirportFTAbuildup {
- byte position; // the position that an airplane is at
- byte heading; // the current orders (eg. TAKEOFF, HANGAR, ENDLANDING, etc.)
- uint32 block; // the block this position is on on the airport (st->airport_flags)
- byte next_in_chain; // next position from this position
+ byte position; // the position that an airplane is at
+ byte heading; // the current orders (eg. TAKEOFF, HANGAR, ENDLANDING, etc.)
+ uint32 block; // the block this position is on on the airport (st->airport_flags)
+ byte next; // next position from this position
} AirportFTAbuildup;
///////////////////////////////////////////////////////////////////////