summaryrefslogtreecommitdiff
path: root/src/linkgraph/linkgraph.h
diff options
context:
space:
mode:
authorfonsinchen <fonsinchen@openttd.org>2014-02-10 20:13:07 +0000
committerfonsinchen <fonsinchen@openttd.org>2014-02-10 20:13:07 +0000
commite37656f2e58ca802f0df5eef42b35e4015b58d86 (patch)
treed1e7133b7030a5d130d5755f2791af0eb7607ef9 /src/linkgraph/linkgraph.h
parent82ece7db12f4cd7d56ddbe3414a0553f636d4259 (diff)
downloadopenttd-e37656f2e58ca802f0df5eef42b35e4015b58d86.tar.xz
(svn r26331) -Fix: some inconsistencies regarding link graph (job) IDs.
Diffstat (limited to 'src/linkgraph/linkgraph.h')
-rw-r--r--src/linkgraph/linkgraph.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linkgraph/linkgraph.h b/src/linkgraph/linkgraph.h
index 811a955e5..4bcc27b31 100644
--- a/src/linkgraph/linkgraph.h
+++ b/src/linkgraph/linkgraph.h
@@ -27,7 +27,7 @@ class LinkGraph;
* Type of the pool for link graph components. Each station can be in at up to
* 32 link graphs. So we allow for plenty of them to be created.
*/
-typedef Pool<LinkGraph, LinkGraphID, 32, 0xFFFFFF> LinkGraphPool;
+typedef Pool<LinkGraph, LinkGraphID, 32, 0xFFFF> LinkGraphPool;
/** The actual pool with link graphs. */
extern LinkGraphPool _link_graph_pool;