summaryrefslogtreecommitdiff
path: root/src/subsidy_base.h
diff options
context:
space:
mode:
authorCharles Pigott <charlespigott@googlemail.com>2019-04-22 09:28:09 +0100
committerPeterN <peter@fuzzle.org>2019-04-29 17:40:22 +0100
commit2e1936da6453265758d6830e5664474a319fd8a7 (patch)
tree053a147c8c693a7acd00c09cd3449cea6399e468 /src/subsidy_base.h
parent5b34c8019f135afd9f20d043a489ab96f286038a (diff)
downloadopenttd-2e1936da6453265758d6830e5664474a319fd8a7.tar.xz
Codechange: Remove SourceTypeByte type
Diffstat (limited to 'src/subsidy_base.h')
-rw-r--r--src/subsidy_base.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/subsidy_base.h b/src/subsidy_base.h
index 6370a77e6..a7f6f4f3e 100644
--- a/src/subsidy_base.h
+++ b/src/subsidy_base.h
@@ -22,13 +22,13 @@ extern SubsidyPool _subsidy_pool;
/** Struct about subsidies, offered and awarded */
struct Subsidy : SubsidyPool::PoolItem<&_subsidy_pool> {
- CargoID cargo_type; ///< Cargo type involved in this subsidy, CT_INVALID for invalid subsidy
- byte remaining; ///< Remaining months when this subsidy is valid
- CompanyID awarded; ///< Subsidy is awarded to this company; INVALID_COMPANY if it's not awarded to anyone
- SourceTypeByte src_type; ///< Source of subsidised path (ST_INDUSTRY or ST_TOWN)
- SourceTypeByte dst_type; ///< Destination of subsidised path (ST_INDUSTRY or ST_TOWN)
- SourceID src; ///< Index of source. Either TownID or IndustryID
- SourceID dst; ///< Index of destination. Either TownID or IndustryID
+ CargoID cargo_type; ///< Cargo type involved in this subsidy, CT_INVALID for invalid subsidy
+ byte remaining; ///< Remaining months when this subsidy is valid
+ CompanyID awarded; ///< Subsidy is awarded to this company; INVALID_COMPANY if it's not awarded to anyone
+ SourceType src_type; ///< Source of subsidised path (ST_INDUSTRY or ST_TOWN)
+ SourceType dst_type; ///< Destination of subsidised path (ST_INDUSTRY or ST_TOWN)
+ SourceID src; ///< Index of source. Either TownID or IndustryID
+ SourceID dst; ///< Index of destination. Either TownID or IndustryID
/**
* We need an (empty) constructor so struct isn't zeroed (as C++ standard states)