summaryrefslogtreecommitdiff
path: root/economy.h
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2006-03-26 22:41:56 +0000
committerDarkvater <darkvater@openttd.org>2006-03-26 22:41:56 +0000
commit2ba792d64447968bbd18c755a6e4d1720728c5ae (patch)
tree9bd460410009e4e5c945bf15b225b476092a0fe6 /economy.h
parentfa86dff4c3f02a8dbdc339b421a7096d10bae368 (diff)
downloadopenttd-2ba792d64447968bbd18c755a6e4d1720728c5ae.tar.xz
(svn r4130) - CodeChange: Add proper semantics for TownID for such variables instead of using the general uint16-type. We probably need to change GetTown() and IsTownIndex() as well to use TownID.
Diffstat (limited to 'economy.h')
-rw-r--r--economy.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/economy.h b/economy.h
index 72d259697..1167c6860 100644
--- a/economy.h
+++ b/economy.h
@@ -23,6 +23,7 @@ VARDEF Economy _economy;
typedef struct Subsidy {
CargoID cargo_type;
byte age;
+ /* from and to can either be TownID, StationID or IndustryID */
uint16 from;
uint16 to;
} Subsidy;