unknown issue with dma size, need to investigate deeper (had to increase target buffer size to avoid crashes)

This commit is contained in:
ejcoumans
2007-06-13 23:18:04 +00:00
parent 0fb0b6056c
commit f4d31a2dd8
2 changed files with 4 additions and 4 deletions

View File

@@ -220,8 +220,8 @@ void ConcaveDemo::initPhysics()
{
for (int i=0;i<10;i++)
{
//btCollisionShape* boxShape = new btBoxShape(btVector3(1,1,1));
btCollisionShape* boxShape = new btSphereShape(1.f);
btCollisionShape* boxShape = new btBoxShape(btVector3(1,1,1));
//btCollisionShape* boxShape = new btSphereShape(1.f);
startTransform.setOrigin(btVector3(2*i,10,1));
localCreateRigidBody(1, startTransform,boxShape);
}