From 5287af896720b8d9b02bcac177ea00409cd71620 Mon Sep 17 00:00:00 2001 From: RedFox Date: Sun, 22 Sep 2013 04:37:46 +0000 Subject: [PATCH] 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. --- source/simulation2/helpers/Spatial.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/simulation2/helpers/Spatial.h b/source/simulation2/helpers/Spatial.h index b96fc40529..2a2060d13a 100644 --- a/source/simulation2/helpers/Spatial.h +++ b/source/simulation2/helpers/Spatial.h @@ -26,7 +26,7 @@ */ struct SpatialQueryArray { - enum { MAX_COUNT = 1024 }; + enum { MAX_COUNT = 2048 }; int count; uint32_t items[MAX_COUNT];