summaryrefslogtreecommitdiff
path: root/src/aircraft_cmd.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2010-08-01 19:44:49 +0000
committerfrosch <frosch@openttd.org>2010-08-01 19:44:49 +0000
commit4bd32799f13480763bfb58db82bb98d1500753ae (patch)
tree3aff9492cad51a7cb456158b0a3a32c90f978fe4 /src/aircraft_cmd.cpp
parent613b273f36ffd1d300ea08c5d6b1c469d145a591 (diff)
downloadopenttd-4bd32799f13480763bfb58db82bb98d1500753ae.tar.xz
(svn r20286) -Codechange: Unify end of doxygen comments.
Diffstat (limited to 'src/aircraft_cmd.cpp')
-rw-r--r--src/aircraft_cmd.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/aircraft_cmd.cpp b/src/aircraft_cmd.cpp
index cb7e5ffcc..6019f477f 100644
--- a/src/aircraft_cmd.cpp
+++ b/src/aircraft_cmd.cpp
@@ -9,7 +9,8 @@
/**
* @file aircraft_cmd.cpp
- * This file deals with aircraft and airport movements functionalities */
+ * This file deals with aircraft and airport movements functionalities
+ */
#include "stdafx.h"
#include "aircraft.h"
@@ -73,7 +74,8 @@ void Aircraft::UpdateDeltaXY(Direction direction)
/**
* this maps the terminal to its corresponding state and block flag
- * currently set for 10 terms, 4 helipads */
+ * currently set for 10 terms, 4 helipads
+ */
static const byte _airport_terminal_state[] = {2, 3, 4, 5, 6, 7, 19, 20, 0, 0, 8, 9, 21, 22};
static const byte _airport_terminal_flag[] = {0, 1, 2, 3, 4, 5, 22, 23, 0, 0, 6, 7, 24, 25};
@@ -143,7 +145,8 @@ static StationID FindNearestHangar(const Aircraft *v)
/**
* Check if given vehicle has a goto hangar in his orders
* @param v vehicle to inquiry
- * @return true if vehicle v has an airport in the schedule, that has a hangar */
+ * @return true if vehicle v has an airport in the schedule, that has a hangar
+ */
static bool HaveHangarInOrderList(Aircraft *v)
{
const Order *order;