summaryrefslogtreecommitdiff
path: root/src/engine_type.h
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2009-01-06 14:45:38 +0000
committerpeter1138 <peter1138@openttd.org>2009-01-06 14:45:38 +0000
commitbd803696b3fafb44e3539510a7473cbc93b9e093 (patch)
treeb15421b827c35a0f165f46308277f43ad88ef9de /src/engine_type.h
parent4fcf28d9edc1f5d80d9b2eb8a27978083d5d8c91 (diff)
downloadopenttd-bd803696b3fafb44e3539510a7473cbc93b9e093.tar.xz
(svn r14869) -Feature: Allow road vehicles to move multiple steps in a tick (code based on train movement code) and add support for RV prop 15. This gives RVs a maximum speed of 318mph instead 79mph. This only implements higher speeds, not 'realistic acceleration'.
Diffstat (limited to 'src/engine_type.h')
-rw-r--r--src/engine_type.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine_type.h b/src/engine_type.h
index 5f6cdd271..8c681216e 100644
--- a/src/engine_type.h
+++ b/src/engine_type.h
@@ -96,7 +96,7 @@ struct RoadVehicleInfo {
byte running_cost;
byte running_cost_class;
SoundFxByte sfx;
- byte max_speed;
+ uint16 max_speed; ///< Maximum speed in mph/3.2 units
byte capacity;
CargoID cargo_type;
};