summaryrefslogtreecommitdiff
path: root/src/economy.h
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2007-03-21 13:19:01 +0000
committerpeter1138 <peter1138@openttd.org>2007-03-21 13:19:01 +0000
commit93fe91cc8c1f38678dfb7cef6ede77c56ab36c1b (patch)
treee15177888ccaf427ebf30cc793b6da2908c47a8f /src/economy.h
parent7e00fdac9070368b0838685c5f8e422dc92f25ca (diff)
downloadopenttd-93fe91cc8c1f38678dfb7cef6ede77c56ab36c1b.tar.xz
(svn r9388) -Codechange: variable scope and type, and standardify all CargoID loops.
Diffstat (limited to 'src/economy.h')
-rw-r--r--src/economy.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/economy.h b/src/economy.h
index 4519e182f..b15f42221 100644
--- a/src/economy.h
+++ b/src/economy.h
@@ -66,6 +66,6 @@ void DeleteSubsidyWithIndustry(IndustryID index);
void DeleteSubsidyWithStation(StationID index);
int32 GetTransportedGoodsIncome(uint num_pieces, uint dist, byte transit_days, CargoID cargo_type);
-uint MoveGoodsToStation(TileIndex tile, int w, int h, int type, uint amount);
+uint MoveGoodsToStation(TileIndex tile, int w, int h, CargoID type, uint amount);
#endif /* ECONOMY_H */