summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2006-12-28 17:03:36 +0000
committerpeter1138 <peter1138@openttd.org>2006-12-28 17:03:36 +0000
commit691487b2fee28290cf48f99e3a3895037b1beb8f (patch)
treeefdaf05ba02fee8e946e0e9e11e07a93905d171f
parent822646b9a90c12b49fa9e38558b6b6d6ac01df84 (diff)
downloadopenttd-691487b2fee28290cf48f99e3a3895037b1beb8f.tar.xz
(svn r7596) -Codechange: Always display tractive effort in kN.
-rw-r--r--strings.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/strings.c b/strings.c
index 7a6134361..d94674193 100644
--- a/strings.c
+++ b/strings.c
@@ -547,19 +547,19 @@ typedef struct Units {
/* Unit conversions */
static const Units units[] = {
- { // Imperial (Original, mph, hp, metric ton, litre, metric ton force)
+ { // Imperial (Original, mph, hp, metric ton, litre, kN)
10, 4, STR_UNITS_VELOCITY_IMPERIAL,
1, 0, STR_UNITS_POWER_IMPERIAL,
1, 0, STR_UNITS_WEIGHT_SHORT_METRIC, STR_UNITS_WEIGHT_LONG_METRIC,
1000, 0, STR_UNITS_VOLUME_SHORT_METRIC, STR_UNITS_VOLUME_LONG_METRIC,
- 835, 13, STR_UNITS_FORCE_METRIC,
+ 1, 0, STR_UNITS_FORCE_SI,
},
- { // Metric (km/h, hp, metric ton, litre, metric ton force)
+ { // Metric (km/h, hp, metric ton, litre, kN)
1, 0, STR_UNITS_VELOCITY_METRIC,
1, 0, STR_UNITS_POWER_METRIC,
1, 0, STR_UNITS_WEIGHT_SHORT_METRIC, STR_UNITS_WEIGHT_LONG_METRIC,
1000, 0, STR_UNITS_VOLUME_SHORT_METRIC, STR_UNITS_VOLUME_LONG_METRIC,
- 835, 13, STR_UNITS_FORCE_METRIC,
+ 1, 0, STR_UNITS_FORCE_SI,
},
{ // SI (m/s, kilowatt, kilogram, cubic metres, kilonewton)
284, 10, STR_UNITS_VELOCITY_SI,