mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-06-24 06:00:05 +01:00
(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:
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
Block a user