summaryrefslogtreecommitdiff
path: root/src/subsidy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/subsidy.cpp')
-rw-r--r--src/subsidy.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/subsidy.cpp b/src/subsidy.cpp
index 32c8f0a1b..e3913a289 100644
--- a/src/subsidy.cpp
+++ b/src/subsidy.cpp
@@ -130,8 +130,7 @@ static inline void SetPartOfSubsidyFlag(SourceType type, SourceID index, PartOfS
/** Perform a full rebuild of the subsidies cache. */
void RebuildSubsidisedSourceAndDestinationCache()
{
- Town *t;
- FOR_ALL_TOWNS(t) t->cache.part_of_subsidy = POS_NONE;
+ for (Town *t : Town::Iterate()) t->cache.part_of_subsidy = POS_NONE;
for (Industry *i : Industry::Iterate()) i->part_of_subsidy = POS_NONE;