From 979ccd45baa9a38169661ba379a341cae8619c3b Mon Sep 17 00:00:00 2001 From: rubidium Date: Wed, 7 Mar 2007 12:11:48 +0000 Subject: (svn r9051) -Codechange: typedef [enum|struct] Y {} X; -> [enum|struct] X {}; --- src/airport_movement.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/airport_movement.h') diff --git a/src/airport_movement.h b/src/airport_movement.h index f8bed45f5..53d6174d5 100644 --- a/src/airport_movement.h +++ b/src/airport_movement.h @@ -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********************/////// -- cgit v1.2.3-54-g00ecf