Fix broken build from recent rBae7db030dab0.

This commit is contained in:
Bastien Montagne 2019-04-30 22:16:52 +02:00
parent d4126238b4
commit 20a8b07561
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}