Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYiming Wu <xp8110@outlook.com>2019-04-04 15:33:16 +0300
committerYiming Wu <xp8110@outlook.com>2019-04-04 15:33:16 +0300
commit47495f6f092f5282135c31152ed8c24eac83ae42 (patch)
tree12be8c91a0df54c626533c81f500e175c37ecd82 /source/blender/modifiers
parent525c9034cd77e22d9307f3813c47a314269dda73 (diff)
Fix errors
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_mybmesh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_mybmesh.c b/source/blender/modifiers/intern/MOD_mybmesh.c
index efbb5346ade..f87c9151f6c 100644
--- a/source/blender/modifiers/intern/MOD_mybmesh.c
+++ b/source/blender/modifiers/intern/MOD_mybmesh.c
@@ -4287,7 +4287,7 @@ static Mesh *mybmesh_do(Mesh *mesh, MyBMeshModifierData *mmd, float cam_loc[3])
if (mmd->flag & MOD_MYBMESH_TRIANG) {
//TODO check if shortest diagonal is better
- BM_mesh_triangulate(bm, MOD_TRIANGULATE_QUAD_FIXED, MOD_TRIANGULATE_NGON_BEAUTY, false, NULL, NULL, NULL);
+ BM_mesh_triangulate(bm, MOD_TRIANGULATE_QUAD_FIXED, MOD_TRIANGULATE_NGON_BEAUTY, 4, false, NULL, NULL, NULL);
}
if( mmd->camera_ob == NULL){