diff options
author | truebrain <truebrain@openttd.org> | 2012-01-01 10:50:38 +0000 |
---|---|---|
committer | truebrain <truebrain@openttd.org> | 2012-01-01 10:50:38 +0000 |
commit | a057b8c6349cf03f8d38acf56697d2e72cdc2380 (patch) | |
tree | 3060e2b99b4bec2f9eaf604c838338b4e8eb4dbc | |
parent | b111813d0b64c1baa56bd6e64dcca9442c46d922 (diff) | |
download | openttd-a057b8c6349cf03f8d38acf56697d2e72cdc2380.tar.xz |
(svn r23699) -Fix [FS#4928] (r23630): too much copy/pasting only allowed a silly low amount of goals to be created.
-rw-r--r-- | src/goal_base.h | 2 |
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 */ |