summaryrefslogtreecommitdiff
path: root/src/aircraft.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-07-24 17:01:23 +0000
committerrubidium <rubidium@openttd.org>2007-07-24 17:01:23 +0000
commit5d3f058b65c97b61709061b721d1ad6922dbc9ef (patch)
tree08ce082e1855582f3c9d1c228a0928e71c054c80 /src/aircraft.h
parent0d9a51de6ddc432e3d48bf5f2ff5027067273f2c (diff)
downloadopenttd-5d3f058b65c97b61709061b721d1ad6922dbc9ef.tar.xz
(svn r10673) -Cleanup: some assorted style cleanups. Primarily type* var -> type *var.
Diffstat (limited to 'src/aircraft.h')
-rw-r--r--src/aircraft.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/aircraft.h b/src/aircraft.h
index 255225db9..2f5f14b90 100644
--- a/src/aircraft.h
+++ b/src/aircraft.h
@@ -35,7 +35,7 @@ static inline bool IsNormalAircraft(const Vehicle *v)
* @param v vehicle to check
* @return true if in hangar
*/
-static inline bool IsAircraftInHangar(const Vehicle* v)
+static inline bool IsAircraftInHangar(const Vehicle *v)
{
assert(v->type == VEH_AIRCRAFT);
return v->vehstatus & VS_HIDDEN && IsHangarTile(v->tile);
@@ -45,7 +45,7 @@ static inline bool IsAircraftInHangar(const Vehicle* v)
* @param v vehicle to check
* @return true if in hangar and stopped
*/
-static inline bool IsAircraftInHangarStopped(const Vehicle* v)
+static inline bool IsAircraftInHangarStopped(const Vehicle *v)
{
return IsAircraftInHangar(v) && v->vehstatus & VS_STOPPED;
}