From f9ab1df5640cfa20ae381dfb75afaf1604e00c0c Mon Sep 17 00:00:00 2001 From: Jens Verwiebe Date: Tue, 29 Oct 2013 10:13:49 +0000 Subject: Fix collada compile, too less arguments --- 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 146aff5ca5b..8a1b391f07b 100644 --- a/source/blender/collada/collada_utils.cpp +++ b/source/blender/collada/collada_utils.cpp @@ -359,7 +359,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, use_beauty, tag_only, NULL, NULL); + BM_mesh_triangulate(bm, use_beauty, tag_only, NULL, NULL, NULL); BM_mesh_bm_to_me(bm, me, FALSE); BM_mesh_free(bm); } -- cgit v1.2.3