summaryrefslogtreecommitdiff
path: root/src/strings.cpp
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/strings.cpp
parent317220c2e4f9d0866553635872cae952616169dc (diff)
downloadopenttd-de9a6fc90b4360313d8846c7701848b7a0295ba3.tar.xz
(svn r15308) -Codechange: Deduplicate km-ish/h -> mph conversions.
Diffstat (limited to 'src/strings.cpp')
-rw-r--r--src/strings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strings.cpp b/src/strings.cpp
index 83231b2ce..e6d10e092 100644
--- a/src/strings.cpp
+++ b/src/strings.cpp
@@ -596,7 +596,7 @@ static char *FormatString(char *buff, const char *str, const int64 *argv, uint c
case SCC_VELOCITY: {// {VELOCITY}
int64 args[1];
assert(_settings_game.locale.units < lengthof(units));
- args[0] = ConvertSpeedToDisplaySpeed(GetInt32(&argv));
+ args[0] = ConvertSpeedToDisplaySpeed(GetInt32(&argv) * 10 / 16);
buff = FormatString(buff, GetStringPtr(units[_settings_game.locale.units].velocity), args, modifier >> 24, last);
modifier = 0;
break;