Fixed leak in BulletPhysicsServer

This commit is contained in:
Wilson E. Alvarez 2018-03-13 15:24:30 -04:00
parent fe93459ef9
commit e5ae9750ed

View file

@ -89,7 +89,9 @@ BulletPhysicsServer::BulletPhysicsServer() :
active(true),
active_spaces_count(0) {}
BulletPhysicsServer::~BulletPhysicsServer() {}
BulletPhysicsServer::~BulletPhysicsServer() {
bulletdelete(emptyShape);
}
RID BulletPhysicsServer::shape_create(ShapeType p_shape) {
ShapeBullet *shape = NULL;