diff options
author | smatz <smatz@openttd.org> | 2009-07-01 18:45:05 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2009-07-01 18:45:05 +0000 |
commit | 76a50ce94dc7c78d76c309d8a639591fed2a2da8 (patch) | |
tree | 342be7030b9760781f886bca89cbe01863985008 /src/subsidy_func.h | |
parent | aaeb53066dff98cac2d66d1f02f545d14c9f650c (diff) | |
download | openttd-76a50ce94dc7c78d76c309d8a639591fed2a2da8.tar.xz |
(svn r16714) -Codechange: use pool-like accessors for Subsidy
Diffstat (limited to 'src/subsidy_func.h')
-rw-r--r-- | src/subsidy_func.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/subsidy_func.h b/src/subsidy_func.h index fc5a4b155..f53ff4bbc 100644 --- a/src/subsidy_func.h +++ b/src/subsidy_func.h @@ -10,9 +10,8 @@ #include "town_type.h" #include "industry_type.h" #include "company_type.h" -#include "subsidy_type.h" -Pair SetupSubsidyDecodeParam(const Subsidy *s, bool mode); +Pair SetupSubsidyDecodeParam(const struct Subsidy *s, bool mode); void DeleteSubsidyWithTown(TownID index); void DeleteSubsidyWithIndustry(IndustryID index); void DeleteSubsidyWithStation(StationID index); |