diff options
author | rubidium <rubidium@openttd.org> | 2007-07-24 17:01:23 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-07-24 17:01:23 +0000 |
commit | 5d3f058b65c97b61709061b721d1ad6922dbc9ef (patch) | |
tree | 08ce082e1855582f3c9d1c228a0928e71c054c80 /src/ship.h | |
parent | 0d9a51de6ddc432e3d48bf5f2ff5027067273f2c (diff) | |
download | openttd-5d3f058b65c97b61709061b721d1ad6922dbc9ef.tar.xz |
(svn r10673) -Cleanup: some assorted style cleanups. Primarily type* var -> type *var.
Diffstat (limited to 'src/ship.h')
-rw-r--r-- | src/ship.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ship.h b/src/ship.h index 37657e7e6..0ca73ee95 100644 --- a/src/ship.h +++ b/src/ship.h @@ -12,13 +12,13 @@ void CcCloneShip(bool success, TileIndex tile, uint32 p1, uint32 p2); void RecalcShipStuff(Vehicle *v); void GetShipSpriteSize(EngineID engine, uint &width, uint &height); -static inline bool IsShipInDepot(const Vehicle* v) +static inline bool IsShipInDepot(const Vehicle *v) { assert(v->type == VEH_SHIP); return v->u.ship.state == 0x80; } -static inline bool IsShipInDepotStopped(const Vehicle* v) +static inline bool IsShipInDepotStopped(const Vehicle *v) { return IsShipInDepot(v) && v->vehstatus & VS_STOPPED; } |