Fix compiler warning.
bb and mselect are different struct, gcc warning about assignment incompatible pointer.
This commit is contained in:
@@ -2549,7 +2549,8 @@ static void direct_link_mesh(FileData *fd, Mesh *mesh)
|
||||
direct_link_customdata(fd, &mesh->edata, mesh->pv ? mesh->pv->totedge : mesh->totedge);
|
||||
direct_link_customdata(fd, &mesh->fdata, mesh->pv ? mesh->pv->totface : mesh->totface);
|
||||
|
||||
mesh->bb= mesh->mselect = NULL;
|
||||
mesh->bb= NULL;
|
||||
mesh->mselect = NULL;
|
||||
|
||||
/* Multires data */
|
||||
mesh->mr= newdataadr(fd, mesh->mr);
|
||||
|
||||
Reference in New Issue
Block a user