Mercurial > hg > openttd
diff src/economy.cpp @ 10647:592ae9307430 draft
(svn r14949) -Cleanup: pointer coding style
author | rubidium <rubidium@openttd.org> |
---|---|
date | Sat, 10 Jan 2009 00:31:47 +0000 (2009-01-10) |
parents | b6779abf2e96 |
children | 7edccbb67398 |
line wrap: on
line diff
--- a/src/economy.cpp +++ b/src/economy.cpp @@ -186,7 +186,7 @@ /* Count stations */ { uint num = 0; - const Station* st; + const Station *st; FOR_ALL_STATIONS(st) { if (st->owner == owner) num += CountBits(st->facilities); @@ -856,7 +856,7 @@ } -Pair SetupSubsidyDecodeParam(const Subsidy* s, bool mode) +Pair SetupSubsidyDecodeParam(const Subsidy *s, bool mode) { TileIndex tile; TileIndex tile2; @@ -1033,7 +1033,7 @@ static bool CheckSubsidyDuplicate(Subsidy *s) { - const Subsidy* ss; + const Subsidy *ss; for (ss = _subsidies; ss != endof(_subsidies); ss++) { if (s != ss &&