diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-08-27 20:16:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-27 20:16:29 +0200 |
commit | 177a5988fffd960a760e683c370e68368e431260 (patch) | |
tree | ddf25c7b312da143a4ab4b2d608f7f4da27aa927 /scene/3d | |
parent | f38c64e8b13d5700f87087f731dddf2590300432 (diff) | |
parent | 4817595c0eecf6c63ff338628f56acd5ddde6f25 (diff) |
Merge pull request #31716 from profan/fix/unitialized
Fix otherwise unitialized variables, found in #31694
Diffstat (limited to 'scene/3d')
-rw-r--r-- | scene/3d/physics_body.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/3d/physics_body.h b/scene/3d/physics_body.h index aa6030d44e..0e2e614717 100644 --- a/scene/3d/physics_body.h +++ b/scene/3d/physics_body.h @@ -162,6 +162,7 @@ protected: ShapePair(int p_bs, int p_ls) { body_shape = p_bs; local_shape = p_ls; + tagged = false; } }; struct RigidBody_RemoveAction { |