Mercurial > hg > openttd
comparison src/economy.cpp @ 11376:b9b2391afd1a draft
(svn r15726) -Codechange: unify coding style for const pointers
author | smatz <smatz@openttd.org> |
---|---|
date | Sun, 15 Mar 2009 16:04:39 +0000 |
parents | 82c90cd591ab |
children | a39da1e4c1f5 |
comparison
equal
deleted
inserted
replaced
11375:1d342902ac94 | 11376:b9b2391afd1a |
---|---|
1512 } | 1512 } |
1513 v->cargo.InvalidateCache(); | 1513 v->cargo.InvalidateCache(); |
1514 } | 1514 } |
1515 | 1515 |
1516 /* Call the production machinery of industries only once for every vehicle chain */ | 1516 /* Call the production machinery of industries only once for every vehicle chain */ |
1517 const Industry *const *isend = industry_set.End(); | 1517 const Industry * const *isend = industry_set.End(); |
1518 for (Industry **iid = industry_set.Begin(); iid != isend; iid++) { | 1518 for (Industry **iid = industry_set.Begin(); iid != isend; iid++) { |
1519 TriggerIndustryProduction(*iid); | 1519 TriggerIndustryProduction(*iid); |
1520 } | 1520 } |
1521 | 1521 |
1522 if (virtual_profit > 0) { | 1522 if (virtual_profit > 0) { |