Rename variable to fix Windows header name collision

pull/688/head
Jonathan G Rennison 4 weeks ago
parent 71227f61d8
commit d5b8f51bf9

@ -5088,9 +5088,9 @@ void BuildOilRig(TileIndex tile)
if (_settings_game.station.serve_neutral_industries) {
StationList nearby = std::move(st->industry->stations_near);
st->industry->stations_near.clear();
for (Station *near : nearby) {
near->RecomputeCatchment(true);
UpdateStationAcceptance(near, true);
for (Station *st_near : nearby) {
st_near->RecomputeCatchment(true);
UpdateStationAcceptance(st_near, true);
}
}

Loading…
Cancel
Save