(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

@@ -28,11 +28,11 @@ static const ObjectType NUM_OBJECTS = 64000; ///< Number of supported o
static const ObjectType INVALID_OBJECT_TYPE = 0xFFFF; ///< An invalid object
/** Unique identifier for an object. */
typedef uint16 ObjectID;
typedef uint32 ObjectID;
struct Object;
struct ObjectSpec;
static const ObjectID INVALID_OBJECT = 0xFFFF; ///< An invalid object
static const ObjectID INVALID_OBJECT = 0xFFFFFFFF; ///< An invalid object
#endif /* OBJECT_TYPE_H */