diff options
author | Darkvater <darkvater@openttd.org> | 2007-03-03 13:36:25 +0000 |
---|---|---|
committer | Darkvater <darkvater@openttd.org> | 2007-03-03 13:36:25 +0000 |
commit | e33a8d3caa8699bf499c6cc1d432e0f3c0707201 (patch) | |
tree | 4cdaceedf0e7e79ce5419dc64b78c78d664409c3 /src | |
parent | b024134c6aa6a62cd037095233bb100af451defc (diff) | |
download | openttd-e33a8d3caa8699bf499c6cc1d432e0f3c0707201.tar.xz |
(svn r8995) -Fix (FS#620, r8464): revert properly (reversion of r4322) internal speeds
Diffstat (limited to 'src')
-rw-r--r-- | src/roadveh_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/roadveh_gui.cpp b/src/roadveh_gui.cpp index 5f32c3c50..f5bb924f8 100644 --- a/src/roadveh_gui.cpp +++ b/src/roadveh_gui.cpp @@ -56,7 +56,7 @@ static void RoadVehDetailsWndProc(Window *w, WindowEvent *e) /* Draw max speed */ { - SetDParam(0, v->max_speed / 2); + SetDParam(0, v->max_speed * 10 / 32); DrawString(2, 25, STR_900E_MAX_SPEED, 0); } |