diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-06-11 19:01:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-11 19:01:26 +0200 |
commit | 4043c8a8c980298e22ac0fa7a8955f19411f9148 (patch) | |
tree | 76829765e10fbf61140f640ff23b8e8ac9958b82 /modules/bullet/bullet_physics_server.cpp | |
parent | 15425b450f6c531271be637aecd7fe3cb7d314ba (diff) | |
parent | 6d16f2f053248bff4b72e847904500f760babc35 (diff) |
Merge pull request #29678 from akien-mga/err-macros-semicolon
Fix error macro calls not ending with semicolon
Diffstat (limited to 'modules/bullet/bullet_physics_server.cpp')
-rw-r--r-- | modules/bullet/bullet_physics_server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/bullet/bullet_physics_server.cpp b/modules/bullet/bullet_physics_server.cpp index be4e0b88e8..038001996d 100644 --- a/modules/bullet/bullet_physics_server.cpp +++ b/modules/bullet/bullet_physics_server.cpp @@ -267,7 +267,7 @@ RID BulletPhysicsServer::area_get_space(RID p_area) const { void BulletPhysicsServer::area_set_space_override_mode(RID p_area, AreaSpaceOverrideMode p_mode) { AreaBullet *area = area_owner.get(p_area); - ERR_FAIL_COND(!area) + ERR_FAIL_COND(!area); area->set_spOv_mode(p_mode); } |