Cleanup: refactoring uvislands to prepare for python api

Fix copy+paste bug
This commit is contained in:
Chris Blackbourn 2022-08-08 19:59:33 +12:00
parent bb8488c62c
commit e22628c70b
1 changed files with 1 additions and 1 deletions

View File

@ -836,7 +836,7 @@ UvElementMap *BM_uv_element_map_create(BMesh *bm,
UvElement *v = vlist;
vlist = vlist->next;
v->next = newvlist;
UvElement *newvlist = v;
newvlist = v;
luv = BM_ELEM_CD_GET_VOID_P(v->l, cd_loop_uv_offset);
const float *uv = luv->uv;