summaryrefslogtreecommitdiff
path: root/src/train_gui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/train_gui.cpp')
-rw-r--r--src/train_gui.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/train_gui.cpp b/src/train_gui.cpp
index 6da185464..476c8f9cd 100644
--- a/src/train_gui.cpp
+++ b/src/train_gui.cpp
@@ -33,8 +33,7 @@ void CcBuildWagon(const CommandCost &result, TileIndex tile, uint32 p1, uint32 p
/* find a locomotive in the depot. */
const Vehicle *found = nullptr;
- const Train *t;
- FOR_ALL_TRAINS(t) {
+ for (const Train *t : Train::Iterate()) {
if (t->IsFrontEngine() && t->tile == tile && t->IsStoppedInDepot()) {
if (found != nullptr) return; // must be exactly one.
found = t;