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
commit4765127db8b7adc4a3a4a37de976e893155ad391 (patch)
tree27aa1f9683597d8851d4ee020abe01f964bb8c96 /airport_movement.h
parent90ce9302595f5ffc61b54068dccc11cd3efeadd9 (diff)
downloadopenttd-4765127db8b7adc4a3a4a37de976e893155ad391.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;
///////////////////////////////////////////////////////////////////////