changeset 18850:ccdb5dbf8323 draft

(svn r23699) -Fix [FS#4928] (r23630): too much copy/pasting only allowed a silly low amount of goals to be created.
author truebrain <truebrain@openttd.org>
date Sun, 01 Jan 2012 10:50:38 +0000
parents 809f4b38c1eb
children 529df770c92d
files src/goal_base.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/goal_base.h
+++ b/src/goal_base.h
@@ -17,7 +17,7 @@
 #include "goal_type.h"
 #include "core/pool_type.hpp"
 
-typedef Pool<Goal, GoalID, 1, MAX_COMPANIES> GoalPool;
+typedef Pool<Goal, GoalID, 1, 256> GoalPool;
 extern GoalPool _goal_pool;
 
 /** Struct about subsidies, offered and awarded */