Changeset - r7533:dff6d1a00cd3
[Not reviewed]
master
0 1 0
rubidium - 17 years ago 2007-09-07 21:09:37
rubidium@openttd.org
(svn r11053) -Fix: train status bar flickering a lot when waiting at a signal.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/train.h
Show inline comments
 
@@ -298,7 +298,7 @@ struct Train : public Vehicle {
 
	bool IsPrimaryVehicle() const { return IsFrontEngine(this); }
 
	bool HasFront() const { return true; }
 
	int GetImage(Direction direction) const;
 
	int GetDisplaySpeed() const { return this->cur_speed * 10 / 16; }
 
	int GetDisplaySpeed() const { return this->u.rail.last_speed * 10 / 16; }
 
	int GetDisplayMaxSpeed() const { return this->u.rail.cached_max_speed * 10 / 16; }
 
	Money GetRunningCost() const;
 
	bool IsInDepot() const { return CheckTrainInDepot(this, false) != -1; }
0 comments (0 inline, 0 general)