summaryrefslogtreecommitdiff
path: root/src/disaster_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/disaster_cmd.cpp
parent613b273f36ffd1d300ea08c5d6b1c469d145a591 (diff)
downloadopenttd-4bd32799f13480763bfb58db82bb98d1500753ae.tar.xz
(svn r20286) -Codechange: Unify end of doxygen comments.
Diffstat (limited to 'src/disaster_cmd.cpp')
-rw-r--r--src/disaster_cmd.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/disaster_cmd.cpp b/src/disaster_cmd.cpp
index aa8a8f2f2..803a09854 100644
--- a/src/disaster_cmd.cpp
+++ b/src/disaster_cmd.cpp
@@ -131,7 +131,8 @@ static void DisasterVehicleUpdateImage(DisasterVehicle *v)
/**
* Initialize a disaster vehicle. These vehicles are of type VEH_DISASTER, are unclickable
- * and owned by nobody */
+ * and owned by nobody
+ */
static void InitializeDisasterVehicle(DisasterVehicle *v, int x, int y, byte z, Direction direction, byte subtype)
{
v->x_pos = x;
@@ -674,7 +675,8 @@ typedef void DisasterInitProc();
/**
* Zeppeliner which crashes on a small airport if one found,
- * otherwise crashes on a random tile */
+ * otherwise crashes on a random tile
+ */
static void Disaster_Zeppeliner_Init()
{
if (!Vehicle::CanAllocateItem(2)) return;
@@ -703,7 +705,8 @@ static void Disaster_Zeppeliner_Init()
/**
* Ufo which flies around aimlessly from the middle of the map a bit
- * until it locates a road vehicle which it targets and then destroys */
+ * until it locates a road vehicle which it targets and then destroys
+ */
static void Disaster_Small_Ufo_Init()
{
if (!Vehicle::CanAllocateItem(2)) return;
@@ -850,7 +853,8 @@ static void Disaster_Big_Submarine_Init()
/**
* Coal mine catastrophe, destroys a stretch of 30 tiles of
- * land in a certain direction */
+ * land in a certain direction
+ */
static void Disaster_CoalMine_Init()
{
int index = GB(Random(), 0, 4);