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:
authorBastien Montagne <montagne29@wanadoo.fr>2014-01-23 17:50:50 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2014-01-23 17:52:46 +0400
commitc37e8ecc50a36b0e956d0da0ba1de7d6ea803509 (patch)
tree7208d84027e691053ecd350545ccafae0de2f356 /source/blender/modifiers/intern/MOD_triangulate.c
parent26ae14d2dccd0d34edfe9f26a4126e9a69e74983 (diff)
Cleanup: int/short to bool in BKE_cdderivedmesh.h functions (and TRUE/FALSE to true/false in code using them).
Diffstat (limited to 'source/blender/modifiers/intern/MOD_triangulate.c')
-rw-r--r--source/blender/modifiers/intern/MOD_triangulate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_triangulate.c b/source/blender/modifiers/intern/MOD_triangulate.c
index 182c339abfd..4cae3d662db 100644
--- a/source/blender/modifiers/intern/MOD_triangulate.c
+++ b/source/blender/modifiers/intern/MOD_triangulate.c
@@ -47,7 +47,7 @@ static DerivedMesh *triangulate_dm(DerivedMesh *dm, const int quad_method, const
BM_mesh_triangulate(bm, quad_method, ngon_method, false, NULL, NULL);
- result = CDDM_from_bmesh(bm, FALSE);
+ result = CDDM_from_bmesh(bm, false);
BM_mesh_free(bm);
total_edges = result->getNumEdges(result);