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:
authorJacques Lucke <jacques@blender.org>2020-07-31 11:13:33 +0300
committerJacques Lucke <jacques@blender.org>2020-07-31 11:13:33 +0300
commitf3e8326453ae856d7914e45e832a2ed80aa9a9b9 (patch)
tree51a21c9a771797f0ed39648ba2c779559c733cd0 /source/blender/blenkernel/intern/rigidbody.c
parent59c14c1a62cfd6dc03c21ae7b3e8fe23162c6265 (diff)
Cleanup: fix function signature
Diffstat (limited to 'source/blender/blenkernel/intern/rigidbody.c')
-rw-r--r--source/blender/blenkernel/intern/rigidbody.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/rigidbody.c b/source/blender/blenkernel/intern/rigidbody.c
index 481a643229e..7c335a8e98c 100644
--- a/source/blender/blenkernel/intern/rigidbody.c
+++ b/source/blender/blenkernel/intern/rigidbody.c
@@ -551,7 +551,7 @@ static rbCollisionShape *rigidbody_validate_sim_shape_helper(RigidBodyWorld *rbw
new_shape = rigidbody_get_shape_trimesh_from_mesh(ob);
break;
case RB_SHAPE_COMPOUND:
- new_shape = RB_shape_new_compound(radius);
+ new_shape = RB_shape_new_compound();
rbCollisionShape *childShape = NULL;
float loc[3], rot[4];
float mat[4][4];