summaryrefslogtreecommitdiff
path: root/src/subsidy_base.h
diff options
context:
space:
mode:
authortruebrain <truebrain@openttd.org>2012-01-01 10:50:46 +0000
committertruebrain <truebrain@openttd.org>2012-01-01 10:50:46 +0000
commit39f2d75e0315d42472ba645fbfdd40a350e69e54 (patch)
tree239b9d945cdeb987fd9ffcf28e091852c612ca67 /src/subsidy_base.h
parenta057b8c6349cf03f8d38acf56697d2e72cdc2380 (diff)
downloadopenttd-39f2d75e0315d42472ba645fbfdd40a350e69e54.tar.xz
(svn r23700) -Fix: the size of the Subsidies pool used a random macro, which didn't really make sense in the grand scheme of things
Diffstat (limited to 'src/subsidy_base.h')
-rw-r--r--src/subsidy_base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/subsidy_base.h b/src/subsidy_base.h
index d0f1fa655..eec035b14 100644
--- a/src/subsidy_base.h
+++ b/src/subsidy_base.h
@@ -17,7 +17,7 @@
#include "subsidy_type.h"
#include "core/pool_type.hpp"
-typedef Pool<Subsidy, SubsidyID, 1, MAX_COMPANIES> SubsidyPool;
+typedef Pool<Subsidy, SubsidyID, 1, 256> SubsidyPool;
extern SubsidyPool _subsidy_pool;
/** Struct about subsidies, offered and awarded */