diff options
author | firefly2442 <firefly2442@gmail.com> | 2017-12-30 21:49:04 -0700 |
---|---|---|
committer | firefly2442 <firefly2442@gmail.com> | 2017-12-30 21:49:04 -0700 |
commit | ac2b084fdc4ffd5ca635b17aa74142418e4908cd (patch) | |
tree | 1c44e963ed6bb1053d0898e6e47e68851bf89d0e | |
parent | 0294887a0ca1b42f9fddb3858d4ee304b3f4d055 (diff) |
fix typo in switch statement
-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 b233edc0d4..ae062904b4 100644 --- a/modules/bullet/bullet_physics_server.cpp +++ b/modules/bullet/bullet_physics_server.cpp @@ -121,7 +121,7 @@ RID BulletPhysicsServer::shape_create(ShapeType p_shape) { shape = bulletnew(RayShapeBullet); } break; case SHAPE_CUSTOM: - defaul: + default: ERR_FAIL_V(RID()); break; } |