Correct error in recent commit

This commit is contained in:
Campbell Barton 2015-11-06 01:56:29 +11:00
parent 131c2a2bef
commit 1adc196723
1 changed files with 1 additions and 1 deletions

View File

@ -358,7 +358,7 @@ void bc_triangulate_mesh(Mesh *me)
BMesh *bm = BM_mesh_create(&bm_mesh_allocsize_default);
BM_mesh_bm_from_me(bm, me, true, false, 0);
BM_mesh_triangulate(bm, quad_method, use_beauty, tag_only, NULL, NULL);
BM_mesh_triangulate(bm, quad_method, use_beauty, tag_only, NULL, NULL, NULL);
BM_mesh_bm_to_me(bm, me, false);
BM_mesh_free(bm);