summaryrefslogtreecommitdiff
path: root/src/airport.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2011-12-19 17:48:04 +0000
committerrubidium <rubidium@openttd.org>2011-12-19 17:48:04 +0000
commitdf16ebd7301a989c813c26ab2e21163d361ee236 (patch)
treec74b8a1f965a17c3ac054290ae8d918d88ad1e52 /src/airport.h
parenteaadd215be7a4594bd37504935a821f8cf68c984 (diff)
downloadopenttd-df16ebd7301a989c813c26ab2e21163d361ee236.tar.xz
(svn r23595) -Codechange: add comma after last enum to get a more uniform coding style
Diffstat (limited to 'src/airport.h')
-rw-r--r--src/airport.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/airport.h b/src/airport.h
index d9fe35e3a..a1acc35ba 100644
--- a/src/airport.h
+++ b/src/airport.h
@@ -52,7 +52,7 @@ enum AirportMovingDataFlags {
AMED_BRAKE = 1 << 5, ///< Taxiing at the airport.
AMED_HELI_RAISE = 1 << 6, ///< Helicopter take-off.
AMED_HELI_LOWER = 1 << 7, ///< Helicopter landing.
- AMED_HOLD = 1 << 8 ///< Holding pattern movement (above the airport).
+ AMED_HOLD = 1 << 8, ///< Holding pattern movement (above the airport).
};
/** Movement States on Airports (headings target) */
@@ -144,7 +144,7 @@ public:
AIRPLANES = 0x1, ///< Can planes land on this airport type?
HELICOPTERS = 0x2, ///< Can helicopters land on this airport type?
ALL = AIRPLANES | HELICOPTERS, ///< Mask to check for both planes and helicopters.
- SHORT_STRIP = 0x4 ///< This airport has a short landing strip, dangerous for fast aircraft.
+ SHORT_STRIP = 0x4, ///< This airport has a short landing strip, dangerous for fast aircraft.
};
AirportFTAClass(