Changeset - r12193:b369d1676a33
[Not reviewed]
master
0 1 0
rubidium - 15 years ago 2009-06-21 20:57:01
rubidium@openttd.org
(svn r16617) -Cleanup: some incorrect indenting
1 file changed with 9 insertions and 9 deletions:
0 comments (0 inline, 0 general)
src/airport.h
Show inline comments
 
@@ -102,7 +102,7 @@ static const uint64
 
	TERM_GROUP2_EXIT2_block  = 1ULL << 20,
 
	PRE_HELIPAD_block        = 1ULL << 21,
 

	
 
/* blocks for new airports */
 
	/* blocks for new airports */
 
	TERM7_block              = 1ULL << 22,
 
	TERM8_block              = 1ULL << 23,
 
	TERM9_block              = 1ULL << 24,
 
@@ -116,7 +116,7 @@ static const uint64
 
	RUNWAY_OUT2_block        = 1ULL << 10,   ///< note re-uses TAXIWAY_BUSY
 
	HELIPAD_GROUP_block      = 1ULL << 13,   ///< note re-uses AIRPORT_ENTRANCE
 
	OUT_WAY_block2           = 1ULL << 31,
 
/* end of new blocks */
 
	/* end of new blocks */
 

	
 
	NOTHING_block            = 1ULL << 30;
 

	
 
@@ -157,15 +157,15 @@ struct AirportFTAClass {
 
			Year last_available
 
		);
 

	
 
		~AirportFTAClass();
 
	~AirportFTAClass();
 

	
 
		const AirportMovingData *MovingData(byte position) const
 
		{
 
			assert(position < nofelements);
 
			return &moving_data[position];
 
		}
 
	const AirportMovingData *MovingData(byte position) const
 
	{
 
		assert(position < nofelements);
 
		return &moving_data[position];
 
	}
 

	
 
		/** Is this airport available at this date? */
 
	/** Is this airport available at this date? */
 
		bool IsAvailable() const;
 

	
 
	const AirportMovingData *moving_data;
0 comments (0 inline, 0 general)