Cleanup: fix function signature

This commit is contained in:
Jacques Lucke 2020-07-31 10:13:33 +02:00
parent 59c14c1a62
commit f3e8326453
2 changed files with 2 additions and 2 deletions

@ -240,7 +240,7 @@ rbCollisionShape *RB_shape_new_gimpact_mesh(rbMeshData *mesh);
/* Compound Shape ---------------- */
rbCollisionShape *RB_shape_new_compound();
rbCollisionShape *RB_shape_new_compound(void);
void RB_compound_add_child_shape(rbCollisionShape *collisionShape,
rbCollisionShape *shape,
const float loc[3],

@ -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];