src/airport_movement.h
branchcpp_gui
changeset 6298 c30fe89622df
parent 6285 187e3ef04cc9
child 6307 f40e88cff863
--- a/src/airport_movement.h	Sat Mar 10 11:07:13 2007 +0000
+++ b/src/airport_movement.h	Sun Mar 11 16:31:18 2007 +0000
@@ -8,12 +8,12 @@
 
 // state machine input struct (from external file, etc.)
 // Finite sTate mAchine --> FTA
-typedef struct AirportFTAbuildup {
+struct AirportFTAbuildup {
 	byte position; // the position that an airplane is at
 	byte heading;  // the current orders (eg. TAKEOFF, HANGAR, ENDLANDING, etc.)
 	uint64 block;  // the block this position is on on the airport (st->airport_flags)
 	byte next;     // next position from this position
-} AirportFTAbuildup;
+};
 
 ///////////////////////////////////////////////////////////////////////
 /////*********Movement Positions on Airports********************///////
@@ -371,7 +371,7 @@
 	{  -31,   69, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 5 - circle #1 (north-east)
 	{  -31,  -49, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 6 - circle #2 (north-west)
 	{   69,  -49, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 7 - circle #3 (south-west)
-	{   70,    9, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 8 - circle #4 (south)
+	{   69,    9, AMED_NOSPDCLAMP | AMED_SLOWTURN, {DIR_N} }, // 8 - circle #4 (south)
 };
 
 ///////////////////////////////////////////////////////////////////////