[Bf-blender-cvs] [1adc196] master: Correct error in recent commit

Campbell Barton noreply at git.blender.org
Thu Nov 5 16:02:33 CET 2015


Commit: 1adc196723e058d11f8a9cb7fa4635f0e4d08b40
Author: Campbell Barton
Date:   Fri Nov 6 01:56:29 2015 +1100
Branches: master
https://developer.blender.org/rB1adc196723e058d11f8a9cb7fa4635f0e4d08b40

Correct error in recent commit

===================================================================

M	source/blender/collada/collada_utils.cpp

===================================================================

diff --git a/source/blender/collada/collada_utils.cpp b/source/blender/collada/collada_utils.cpp
index d669487..e71078a 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);




More information about the Bf-blender-cvs mailing list