(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

This commit is contained in:
truebrain
2012-01-01 10:50:46 +00:00
parent af6a2b3a65
commit c2d045f862

View File

@@ -17,7 +17,7 @@
#include "subsidy_type.h" #include "subsidy_type.h"
#include "core/pool_type.hpp" #include "core/pool_type.hpp"
typedef Pool<Subsidy, SubsidyID, 1, MAX_COMPANIES> SubsidyPool; typedef Pool<Subsidy, SubsidyID, 1, 256> SubsidyPool;
extern SubsidyPool _subsidy_pool; extern SubsidyPool _subsidy_pool;
/** Struct about subsidies, offered and awarded */ /** Struct about subsidies, offered and awarded */