changeset 18851:529df770c92d draft

(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
author truebrain <truebrain@openttd.org>
date Sun, 01 Jan 2012 10:50:46 +0000
parents ccdb5dbf8323
children 63b2d7ad4248
files src/subsidy_base.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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 */