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:
authorCampbell Barton <ideasman42@gmail.com>2008-09-13 16:07:36 +0400
committerCampbell Barton <ideasman42@gmail.com>2008-09-13 16:07:36 +0400
commitce41cfa40a1c5db8b8091f64ab0d6f3b5d116cde (patch)
tree89d95a1761c4d18c2104de4e4fbcb019137eb1de /extern/bullet2
parentba9d3aa4ab1be8c7faa28c9d49b4d0ed5f17b32a (diff)
bullet wasnt building on 64bit linux
Diffstat (limited to 'extern/bullet2')
-rw-r--r--extern/bullet2/src/BulletCollision/CollisionDispatch/btCompoundCollisionAlgorithm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/extern/bullet2/src/BulletCollision/CollisionDispatch/btCompoundCollisionAlgorithm.cpp b/extern/bullet2/src/BulletCollision/CollisionDispatch/btCompoundCollisionAlgorithm.cpp
index da9336c55c7..57812818007 100644
--- a/extern/bullet2/src/BulletCollision/CollisionDispatch/btCompoundCollisionAlgorithm.cpp
+++ b/extern/bullet2/src/BulletCollision/CollisionDispatch/btCompoundCollisionAlgorithm.cpp
@@ -141,7 +141,7 @@ public:
}
void Process(const btDbvtNode* leaf)
{
- int index = int(leaf->data);
+ int index = int(long(leaf->data));
btCompoundShape* compoundShape = static_cast<btCompoundShape*>(m_compoundColObj->getCollisionShape());
btCollisionShape* childShape = compoundShape->getChildShape(index);