[Bf-blender-cvs] [20a8b075612] master: Fix broken build from recent rBae7db030dab0.

Bastien Montagne noreply at git.blender.org
Tue Apr 30 22:17:45 CEST 2019


Commit: 20a8b075612ac9d5fabff7ae7a4e0f9b2b164169
Author: Bastien Montagne
Date:   Tue Apr 30 22:16:52 2019 +0200
Branches: master
https://developer.blender.org/rB20a8b075612ac9d5fabff7ae7a4e0f9b2b164169

Fix broken build from recent rBae7db030dab0.

===================================================================

M	source/blender/blenkernel/intern/rigidbody.c

===================================================================

diff --git a/source/blender/blenkernel/intern/rigidbody.c b/source/blender/blenkernel/intern/rigidbody.c
index 0e488dea758..ad15214c3b8 100644
--- a/source/blender/blenkernel/intern/rigidbody.c
+++ b/source/blender/blenkernel/intern/rigidbody.c
@@ -1455,7 +1455,7 @@ static void rigidbody_update_sim_ob(
   }
 
   /* update rigid body location and rotation for kinematic bodies */
-  if (rbo->flag & RBO_FLAG_KINEMATIC || (is_selected && (G.moving & G_TRANSFORM_OBJ)) {
+  if (rbo->flag & RBO_FLAG_KINEMATIC || (is_selected && (G.moving & G_TRANSFORM_OBJ))) {
     RB_body_activate(rbo->shared->physics_object);
     RB_body_set_loc_rot(rbo->shared->physics_object, loc, rot);
   }



More information about the Bf-blender-cvs mailing list