diff options
author | rubidium <rubidium@openttd.org> | 2007-01-23 19:36:59 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-01-23 19:36:59 +0000 |
commit | e6ea9ba0f54a29362c9fe01ee30b8340d4af51d8 (patch) | |
tree | 38d51aba4b77e2a3f3ed341bc61d07120a9197de /src | |
parent | 233948946f72f74430051be0b152824a0f340c6b (diff) | |
download | openttd-e6ea9ba0f54a29362c9fe01ee30b8340d4af51d8.tar.xz |
(svn r8376) -Codechange: remove unused table
Diffstat (limited to 'src')
-rw-r--r-- | src/strings.cpp | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/src/strings.cpp b/src/strings.cpp index 6d1f29b9d..7c317c09f 100644 --- a/src/strings.cpp +++ b/src/strings.cpp @@ -57,68 +57,6 @@ static LanguagePack *_langpack; static uint _langtab_num[32]; // Offset into langpack offs static uint _langtab_start[32]; // Offset into langpack offs -static const StringID _cargo_string_list[NUM_LANDSCAPE][NUM_CARGO] = { - { /* LT_NORMAL */ - STR_PASSENGERS, - STR_TONS, - STR_BAGS, - STR_LITERS, - STR_ITEMS, - STR_CRATES, - STR_TONS, - STR_TONS, - STR_TONS, - STR_TONS, - STR_BAGS, - STR_RES_OTHER - }, - - { /* LT_HILLY */ - STR_PASSENGERS, - STR_TONS, - STR_BAGS, - STR_LITERS, - STR_ITEMS, - STR_CRATES, - STR_TONS, - STR_TONS, - STR_RES_OTHER, - STR_TONS, - STR_BAGS, - STR_TONS - }, - - { /* LT_DESERT */ - STR_PASSENGERS, - STR_LITERS, - STR_BAGS, - STR_LITERS, - STR_TONS, - STR_CRATES, - STR_TONS, - STR_TONS, - STR_TONS, - STR_LITERS, - STR_BAGS, - STR_TONS - }, - - { /* LT_CANDY */ - STR_PASSENGERS, - STR_TONS, - STR_BAGS, - STR_NOTHING, - STR_NOTHING, - STR_TONS, - STR_TONS, - STR_LITERS, - STR_TONS, - STR_NOTHING, - STR_LITERS, - STR_NOTHING - } -}; - // Read an int64 from the argv array. static inline int64 GetInt64(const int32 **argv) |