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>2013-04-25 20:35:57 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-25 20:35:57 +0400
commited684977006c072d826127a253495b1d02f6f6e7 (patch)
tree9d7cc1d3553706945d30c6ebce2bef2f3cbcdac3 /source/blender/blenkernel/intern/rigidbody.c
parent8df319f5e67c19fce61d38d838bfe19f71dd413f (diff)
style cleanup
Diffstat (limited to 'source/blender/blenkernel/intern/rigidbody.c')
-rw-r--r--source/blender/blenkernel/intern/rigidbody.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenkernel/intern/rigidbody.c b/source/blender/blenkernel/intern/rigidbody.c
index 879ba6651c2..b1563363e2a 100644
--- a/source/blender/blenkernel/intern/rigidbody.c
+++ b/source/blender/blenkernel/intern/rigidbody.c
@@ -748,11 +748,11 @@ RigidBodyWorld *BKE_rigidbody_world_copy(RigidBodyWorld *rbw)
void BKE_rigidbody_world_groups_relink(RigidBodyWorld *rbw)
{
if (rbw->group && rbw->group->id.newid)
- rbw->group = (Group*)rbw->group->id.newid;
+ rbw->group = (Group *)rbw->group->id.newid;
if (rbw->constraints && rbw->constraints->id.newid)
- rbw->constraints = (Group*)rbw->constraints->id.newid;
+ rbw->constraints = (Group *)rbw->constraints->id.newid;
if (rbw->effector_weights->group && rbw->effector_weights->group->id.newid)
- rbw->effector_weights->group = (Group*)rbw->effector_weights->group->id.newid;
+ rbw->effector_weights->group = (Group *)rbw->effector_weights->group->id.newid;
}
/* Add rigid body settings to the specified object */