1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-23 15:16:17 +00:00

fix typo in switch statement

This commit is contained in:
firefly2442
2017-12-30 21:49:04 -07:00
parent 0294887a0c
commit ac2b084fdc

View File

@@ -121,7 +121,7 @@ RID BulletPhysicsServer::shape_create(ShapeType p_shape) {
shape = bulletnew(RayShapeBullet); shape = bulletnew(RayShapeBullet);
} break; } break;
case SHAPE_CUSTOM: case SHAPE_CUSTOM:
defaul: default:
ERR_FAIL_V(RID()); ERR_FAIL_V(RID());
break; break;
} }