From 78d0a1cb1af68863e3e7bfed584f4a94ee46f611 Mon Sep 17 00:00:00 2001 From: terkhen Date: Sat, 6 Nov 2010 12:50:34 +0000 Subject: (svn r21096) -Fix: Display the real max speed for aircrafts instead of always using the engine value. --- src/aircraft.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/aircraft.h') diff --git a/src/aircraft.h b/src/aircraft.h index cc9dd8641..34e6e2082 100644 --- a/src/aircraft.h +++ b/src/aircraft.h @@ -90,8 +90,8 @@ struct Aircraft : public SpecializedVehicle { bool IsPrimaryVehicle() const { return this->IsNormalAircraft(); } SpriteID GetImage(Direction direction) const; int GetDisplaySpeed() const { return this->cur_speed; } - int GetDisplayMaxSpeed() const { return this->max_speed; } - int GetSpeedOldUnits() const { return this->max_speed * 10 / 128; } + int GetDisplayMaxSpeed() const { return this->acache.cached_max_speed; } + int GetSpeedOldUnits() const { return this->acache.cached_max_speed * 10 / 128; } Money GetRunningCost() const; bool IsInDepot() const { return (this->vehstatus & VS_HIDDEN) != 0 && IsHangarTile(this->tile); } bool Tick(); -- cgit v1.2.3-54-g00ecf