Changeset - r18841:a4d1d6459b42
[Not reviewed]
master
0 1 0
truebrain - 12 years ago 2012-01-01 10:50:46
truebrain@openttd.org
(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
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/subsidy_base.h
Show inline comments
 
@@ -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 */
0 comments (0 inline, 0 general)