(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 a057b8c634
commit 39f2d75e03
1 changed files with 1 additions and 1 deletions

View File

@ -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 */