diff options
author | rubidium <rubidium@openttd.org> | 2010-11-17 18:04:11 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-11-17 18:04:11 +0000 |
commit | a950e9a4a8374aca1028da1ecb2effd75d1936c6 (patch) | |
tree | b799f1f8b0b9bdf7e216ad13d3cd09a9c215eb32 /src/newgrf_text.cpp | |
parent | 3136775bbed5a67ab0114f4304898e1a7dce4080 (diff) | |
download | openttd-a950e9a4a8374aca1028da1ecb2effd75d1936c6.tar.xz |
(svn r21221) -Fix (r11429): short cargo units names for some cargo types/strings are not properly mapped to the strings that we use for the default industries
Diffstat (limited to 'src/newgrf_text.cpp')
-rw-r--r-- | src/newgrf_text.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/newgrf_text.cpp b/src/newgrf_text.cpp index a1045056f..9cd0d62a5 100644 --- a/src/newgrf_text.cpp +++ b/src/newgrf_text.cpp @@ -46,14 +46,14 @@ StringID TTDPStringIDToOTTDStringIDMapping(StringID str) { /* StringID table for TextIDs 0x4E->0x6D */ static const StringID units_volume[] = { - STR_NOTHING, STR_PASSENGERS, STR_TONS, STR_BAGS, + STR_ITEMS, STR_PASSENGERS, STR_TONS, STR_BAGS, STR_LITERS, STR_ITEMS, STR_CRATES, STR_TONS, STR_TONS, STR_TONS, STR_TONS, STR_BAGS, STR_TONS, STR_TONS, STR_TONS, STR_BAGS, STR_TONS, STR_TONS, STR_BAGS, STR_LITERS, - STR_TONS, STR_LITERS, STR_TONS, STR_NOTHING, - STR_BAGS, STR_LITERS, STR_TONS, STR_NOTHING, - STR_TONS, STR_NOTHING, STR_LITERS, STR_NOTHING + STR_TONS, STR_LITERS, STR_TONS, STR_ITEMS, + STR_BAGS, STR_LITERS, STR_TONS, STR_ITEMS, + STR_TONS, STR_ITEMS, STR_LITERS, STR_ITEMS }; /* A string straight from a NewGRF; no need to remap this as it's already mapped. */ |