Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErwin Coumans <blender@erwincoumans.com>2006-12-25 05:02:13 +0300
committerErwin Coumans <blender@erwincoumans.com>2006-12-25 05:02:13 +0300
commite820cdf6a0ab757cd83ffafd0ea04d736c3faa63 (patch)
treec412336bc8dcee4fad535e46205ddffd905ac37e /extern/bullet2/src/LinearMath
parent0e094ffcab8ae40ce06584c02292102d53ece77d (diff)
fixing some issues: force needs to wake up objects, property sensor issue, island activation issue
Diffstat (limited to 'extern/bullet2/src/LinearMath')
-rw-r--r--extern/bullet2/src/LinearMath/btAlignedObjectArray.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/extern/bullet2/src/LinearMath/btAlignedObjectArray.h b/extern/bullet2/src/LinearMath/btAlignedObjectArray.h
index 79469c03c29..3a66ebbec22 100644
--- a/extern/bullet2/src/LinearMath/btAlignedObjectArray.h
+++ b/extern/bullet2/src/LinearMath/btAlignedObjectArray.h
@@ -68,8 +68,10 @@ class btAlignedObjectArray
SIMD_FORCE_INLINE void deallocate()
{
- if(m_data)
+ if(m_data) {
m_allocator.deallocate(m_data);
+ m_data = 0;
+ }
}