From 5e5d36d6b4c0d86abc9f8c346bda5254b7f8ba35 Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 28 Aug 2007 06:46:33 +0000 Subject: (svn r10995) -Codechange: unify the way to get the displayed maxium speed of a vehicle. Patch by nycom. --- src/train.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/train.h') diff --git a/src/train.h b/src/train.h index db9aa5b2d..a64048fb8 100644 --- a/src/train.h +++ b/src/train.h @@ -273,6 +273,7 @@ struct Train : public Vehicle { bool HasFront() const { return true; } int GetImage(Direction direction) const; int GetDisplaySpeed() const { return this->cur_speed * 10 / 16; } + int GetDisplayMaxSpeed() const { return this->u.rail.cached_max_speed * 10 / 16; } void Tick(); }; -- cgit v1.2.3-54-g00ecf