summaryrefslogtreecommitdiff
path: root/src/train.h
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2009-02-01 17:14:39 +0000
committerfrosch <frosch@openttd.org>2009-02-01 17:14:39 +0000
commitde9a6fc90b4360313d8846c7701848b7a0295ba3 (patch)
treec6c194df7208fda252250f6a43df63be15b1bd2d /src/train.h
parent317220c2e4f9d0866553635872cae952616169dc (diff)
downloadopenttd-de9a6fc90b4360313d8846c7701848b7a0295ba3.tar.xz
(svn r15308) -Codechange: Deduplicate km-ish/h -> mph conversions.
Diffstat (limited to 'src/train.h')
-rw-r--r--src/train.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/train.h b/src/train.h
index 3a462438f..02125efc9 100644
--- a/src/train.h
+++ b/src/train.h
@@ -322,8 +322,8 @@ struct Train : public Vehicle {
void PlayLeaveStationSound() const;
bool IsPrimaryVehicle() const { return IsFrontEngine(this); }
SpriteID GetImage(Direction direction) const;
- int GetDisplaySpeed() const { return this->u.rail.last_speed * 10 / 16; }
- int GetDisplayMaxSpeed() const { return this->u.rail.cached_max_speed * 10 / 16; }
+ int GetDisplaySpeed() const { return this->u.rail.last_speed; }
+ int GetDisplayMaxSpeed() const { return this->u.rail.cached_max_speed; }
Money GetRunningCost() const;
bool IsInDepot() const { return CheckTrainInDepot(this, false) != -1; }
bool IsStoppedInDepot() const { return CheckTrainStoppedInDepot(this) >= 0; }