diff options
author | truebrain <truebrain@openttd.org> | 2012-01-01 10:50:46 +0000 |
---|---|---|
committer | truebrain <truebrain@openttd.org> | 2012-01-01 10:50:46 +0000 |
commit | 39f2d75e0315d42472ba645fbfdd40a350e69e54 (patch) | |
tree | 239b9d945cdeb987fd9ffcf28e091852c612ca67 | |
parent | a057b8c6349cf03f8d38acf56697d2e72cdc2380 (diff) | |
download | openttd-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
-rw-r--r-- | src/subsidy_base.h | 2 |
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 */ |