summaryrefslogtreecommitdiff
path: root/src/newgrf_station.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/newgrf_station.cpp')
-rw-r--r--src/newgrf_station.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/newgrf_station.cpp b/src/newgrf_station.cpp
index 9b91d83eb..483bf28c3 100644
--- a/src/newgrf_station.cpp
+++ b/src/newgrf_station.cpp
@@ -610,11 +610,11 @@ static const SpriteGroup *ResolveStation(ResolverObject *object)
ctype = CT_PURCHASE;
} else {
/* Pick the first cargo that we have waiting */
- for (CargoID cargo = 0; cargo < NUM_CARGO; cargo++) {
- const CargoSpec *cs = CargoSpec::Get(cargo);
- if (cs->IsValid() && object->u.station.statspec->spritegroup[cargo] != NULL &&
- !object->u.station.st->goods[cargo].cargo.Empty()) {
- ctype = cargo;
+ const CargoSpec *cs;
+ FOR_ALL_CARGOSPECS(cs) {
+ if (object->u.station.statspec->spritegroup[cs->Index()] != NULL &&
+ !object->u.station.st->goods[cs->Index()].cargo.Empty()) {
+ ctype = cs->Index();
break;
}
}