mirror of https://github.com/OpenTTD/OpenTTD
(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
parent
a057b8c634
commit
39f2d75e03
|
@ -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 */
|
||||||
|
|
Loading…
Reference in New Issue