(svn r8376) -Codechange: remove unused table
authorrubidium
Tue, 23 Jan 2007 19:36:59 +0000
changeset 5814 84472a29b9e4
parent 5813 8e36eb2f5d64
child 5815 1af8b7c2f257
(svn r8376) -Codechange: remove unused table
src/strings.cpp
--- a/src/strings.cpp	Tue Jan 23 18:37:00 2007 +0000
+++ b/src/strings.cpp	Tue Jan 23 19:36:59 2007 +0000
@@ -57,68 +57,6 @@
 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)