From 39f2d75e0315d42472ba645fbfdd40a350e69e54 Mon Sep 17 00:00:00 2001 From: truebrain Date: Sun, 1 Jan 2012 10:50:46 +0000 Subject: [PATCH] (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 --- src/subsidy_base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/subsidy_base.h b/src/subsidy_base.h index d0f1fa6556..eec035b14b 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 SubsidyPool; +typedef Pool SubsidyPool; extern SubsidyPool _subsidy_pool; /** Struct about subsidies, offered and awarded */