From 1adc196723e058d11f8a9cb7fa4635f0e4d08b40 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 6 Nov 2015 01:56:29 +1100 Subject: [PATCH] Correct error in recent commit --- source/blender/collada/collada_utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/collada/collada_utils.cpp b/source/blender/collada/collada_utils.cpp index d669487db28..e71078a0bae 100644 --- a/source/blender/collada/collada_utils.cpp +++ b/source/blender/collada/collada_utils.cpp @@ -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);