summaryrefslogtreecommitdiff
path: root/src/newgrf_station.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_station.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_station.cpp')
-rw-r--r--src/newgrf_station.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/newgrf_station.cpp b/src/newgrf_station.cpp
index 9aee46307..57ff64bdf 100644
--- a/src/newgrf_station.cpp
+++ b/src/newgrf_station.cpp
@@ -958,7 +958,7 @@ void TriggerStationAnimation(BaseStation *st, TileIndex tile, StationAnimationTr
if (cargo_type == CT_INVALID) {
cargo = CT_INVALID;
} else {
- cargo = GetReverseCargoTranslation(cargo_type, ss->grf_prop.grffile);
+ cargo = ss->grf_prop.grffile->cargo_map[cargo_type];
}
StationAnimationBase::ChangeAnimationFrame(CBID_STATION_ANIM_START_STOP, ss, st, tile, (random_bits << 16) | Random(), (uint8)trigger | (cargo << 8));
}