diff options
author | terkhen <terkhen@openttd.org> | 2010-11-06 12:42:04 +0000 |
---|---|---|
committer | terkhen <terkhen@openttd.org> | 2010-11-06 12:42:04 +0000 |
commit | 5f72460cac353a9bf75d0158a48d8eb102fed9f7 (patch) | |
tree | bf3015f3f65b1d296bc860ba5c53902660896b56 /src | |
parent | 766bf140db3f8a69b46234711c653ee1aba94341 (diff) | |
download | openttd-5f72460cac353a9bf75d0158a48d8eb102fed9f7.tar.xz |
(svn r21093) -Codechange: Align some functions.
Diffstat (limited to 'src')
-rw-r--r-- | src/aircraft.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/aircraft.h b/src/aircraft.h index ec55b53ab..a7d7761a1 100644 --- a/src/aircraft.h +++ b/src/aircraft.h @@ -87,9 +87,9 @@ struct Aircraft : public SpecializedVehicle<Aircraft, VEH_AIRCRAFT> { void MarkDirty(); void UpdateDeltaXY(Direction direction); ExpensesType GetExpenseType(bool income) const { return income ? EXPENSES_AIRCRAFT_INC : EXPENSES_AIRCRAFT_RUN; } - bool IsPrimaryVehicle() const { return this->IsNormalAircraft(); } + bool IsPrimaryVehicle() const { return this->IsNormalAircraft(); } SpriteID GetImage(Direction direction) const; - int GetDisplaySpeed() const { return this->cur_speed; } + int GetDisplaySpeed() const { return this->cur_speed; } int GetDisplayMaxSpeed() const { return this->max_speed; } Money GetRunningCost() const; bool IsInDepot() const { return (this->vehstatus & VS_HIDDEN) != 0 && IsHangarTile(this->tile); } |