summaryrefslogtreecommitdiff
path: root/src/goal_base.h
diff options
context:
space:
mode:
authortruebrain <truebrain@openttd.org>2012-01-01 10:50:38 +0000
committertruebrain <truebrain@openttd.org>2012-01-01 10:50:38 +0000
commita057b8c6349cf03f8d38acf56697d2e72cdc2380 (patch)
tree3060e2b99b4bec2f9eaf604c838338b4e8eb4dbc /src/goal_base.h
parentb111813d0b64c1baa56bd6e64dcca9442c46d922 (diff)
downloadopenttd-a057b8c6349cf03f8d38acf56697d2e72cdc2380.tar.xz
(svn r23699) -Fix [FS#4928] (r23630): too much copy/pasting only allowed a silly low amount of goals to be created.
Diffstat (limited to 'src/goal_base.h')
-rw-r--r--src/goal_base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/goal_base.h b/src/goal_base.h
index 13776d22c..2d97782ed 100644
--- 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 */