(svn r10740) [NewGRF_ports] -Change: Order of vars in MovingData struct modified for gcc compilation. NewGRF_ports
authorrichk
Tue, 31 Jul 2007 22:52:47 +0000
branchNewGRF_ports
changeset 6740 0dec022fa01a
parent 6739 3f2ca4d0abda
child 6741 7d8234e82216
(svn r10740) [NewGRF_ports] -Change: Order of vars in MovingData struct modified for gcc compilation.
src/airport.h
--- a/src/airport.h	Tue Jul 31 00:36:55 2007 +0000
+++ b/src/airport.h	Tue Jul 31 22:52:47 2007 +0000
@@ -36,11 +36,11 @@
 struct AirportMovingData {
 	int16 x;
 	int16 y;
+	uint16 flag;
+	DirectionByte direction;
 	byte z;
 	byte state;
 	byte block;  //block number for this specific location
-	uint16 flag;
-	DirectionByte direction;
 };
 
 struct AirportFTAbuildup;