summaryrefslogtreecommitdiff
path: root/src/newgrf_cargo.cpp
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2012-05-25 17:23:19 +0000
committerfrosch <frosch@openttd.org>2012-05-25 17:23:19 +0000
commit5a34b744b107adba5206a8aa0167c1096f9a901f (patch)
treec9ac12ee34674d2d379c554d2408d1e89ee842b1 /src/newgrf_cargo.cpp
parent9522dbb1a9636fca4b67b8ff7fed873baca3fee1 (diff)
downloadopenttd-5a34b744b107adba5206a8aa0167c1096f9a901f.tar.xz
(svn r24273) -Fix: [NewGRF] GetReverseCargoTranslation() was unnecessary complicated and also returned the wrong thing for cargos not present in the translation table.
Diffstat (limited to 'src/newgrf_cargo.cpp')
-rw-r--r--src/newgrf_cargo.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/newgrf_cargo.cpp b/src/newgrf_cargo.cpp
index 85f203a33..f9da37e7b 100644
--- a/src/newgrf_cargo.cpp
+++ b/src/newgrf_cargo.cpp
@@ -126,18 +126,3 @@ CargoID GetCargoTranslation(uint8 cargo, const GRFFile *grffile, bool usebit)
}
return CT_INVALID;
}
-
-uint8 GetReverseCargoTranslation(CargoID cargo, const GRFFile *grffile)
-{
- /* Note: All grf versions use CargoBit here. Pre-version 7 do NOT use the 'climate dependent' ID. */
- const CargoSpec *cs = CargoSpec::Get(cargo);
-
- /* If the GRF contains a translation table (and the cargo is in the table)
- * then get the cargo ID for the label */
- for (uint i = 0; i < grffile->cargo_max; i++) {
- if (cs->label == grffile->cargo_list[i]) return i;
- }
-
- /* No matching label was found, so we return the 'climate independent' 'bitnum' */
- return cs->bitnum;
-}