(svn r25844) -Change: Increase maximum number of object instances on the map from 64k to about 16M.

This commit is contained in:
frosch
2013-10-12 16:35:50 +00:00
parent 29f5eab56c
commit 69a0c91d63
6 changed files with 13 additions and 12 deletions

View File

@@ -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. */