summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorNoshyaar <poommetee@protonmail.com>2017-12-31 12:34:51 +0700
committerGitHub <noreply@github.com>2017-12-31 12:34:51 +0700
commit7e2941f62bc4e4f400ba7c634ad422c35d50ad7e (patch)
tree1c44e963ed6bb1053d0898e6e47e68851bf89d0e /modules
parent0294887a0ca1b42f9fddb3858d4ee304b3f4d055 (diff)
parentac2b084fdc4ffd5ca635b17aa74142418e4908cd (diff)
Merge pull request #15211 from firefly2442/SwitchDefaultTypo
fix typo in switch statement
Diffstat (limited to 'modules')
-rw-r--r--modules/bullet/bullet_physics_server.cpp2
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;
}