From 2f44eabd7da6828ded0bf7ca02cfd8178828437c Mon Sep 17 00:00:00 2001 From: "erwin.coumans" Date: Mon, 25 Jan 2010 23:41:22 +0000 Subject: [PATCH] fix, no argument to setZero --- Extras/Serialize/BulletWorldImporter/btBulletWorldImporter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Extras/Serialize/BulletWorldImporter/btBulletWorldImporter.cpp b/Extras/Serialize/BulletWorldImporter/btBulletWorldImporter.cpp index e3bc82db1..d95ef31dd 100644 --- a/Extras/Serialize/BulletWorldImporter/btBulletWorldImporter.cpp +++ b/Extras/Serialize/BulletWorldImporter/btBulletWorldImporter.cpp @@ -285,7 +285,7 @@ btTypedConstraint* btBulletWorldImporter::createUniversalD6Constraint(class bt btRigidBody* btBulletWorldImporter::createRigidBody(bool isDynamic, btScalar mass, const btTransform& startTransform,btCollisionShape* shape) { btVector3 localInertia; - localInertia.setZero(0); + localInertia.setZero(); if (mass) shape->calculateLocalInertia(mass,localInertia);