Increased SpatialQueryArray max results from 1024 to 2048. This is a temporary fix until the Search and Prune solution is implemented.

This was SVN commit r13888.
This commit is contained in:
RedFox
2013-09-22 04:37:46 +00:00
parent 5afb18dda4
commit 5287af8967
+1 -1
View File
@@ -26,7 +26,7 @@
*/
struct SpatialQueryArray
{
enum { MAX_COUNT = 1024 };
enum { MAX_COUNT = 2048 };
int count;
uint32_t items[MAX_COUNT];