summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-06-21 20:57:01 +0000
committerrubidium <rubidium@openttd.org>2009-06-21 20:57:01 +0000
commitacff607624308b1b652e9c8a5aad09d3ef863322 (patch)
treecfd7b0d9fcdbb29425779ce367726304f5866e23
parent2eca42f5be32dd0ba6cf927ee3669b09db77b0e6 (diff)
downloadopenttd-acff607624308b1b652e9c8a5aad09d3ef863322.tar.xz
(svn r16617) -Cleanup: some incorrect indenting
-rw-r--r--src/airport.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/airport.h b/src/airport.h
index 0f1b49180..484130c2c 100644
--- a/src/airport.h
+++ b/src/airport.h
@@ -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;