summaryrefslogtreecommitdiff
path: root/src/object_base.h
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2013-10-12 16:35:50 +0000
committerfrosch <frosch@openttd.org>2013-10-12 16:35:50 +0000
commit69a0c91d63df017f99137c4d70d69fa32d3822f9 (patch)
tree4c640ba170bc085cc70013259b62ce4447689463 /src/object_base.h
parent29f5eab56cac833ee0c4c6377c74c1c7f17174bf (diff)
downloadopenttd-69a0c91d63df017f99137c4d70d69fa32d3822f9.tar.xz
(svn r25844) -Change: Increase maximum number of object instances on the map from 64k to about 16M.
Diffstat (limited to 'src/object_base.h')
-rw-r--r--src/object_base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/object_base.h b/src/object_base.h
index 676fc9c9c..47e5a7f94 100644
--- a/src/object_base.h
+++ b/src/object_base.h
@@ -18,7 +18,7 @@
#include "town_type.h"
#include "date_type.h"
-typedef Pool<Object, ObjectID, 64, 64000> ObjectPool;
+typedef Pool<Object, ObjectID, 64, 0xFF0000> ObjectPool;
extern ObjectPool _object_pool;
/** An object, such as transmitter, on the map. */