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_skin.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_skin.c')
-rw-r--r--source/blender/modifiers/intern/MOD_skin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_skin.c b/source/blender/modifiers/intern/MOD_skin.c
index 73297c00084..1d9f590378d 100644
--- a/source/blender/modifiers/intern/MOD_skin.c
+++ b/source/blender/modifiers/intern/MOD_skin.c
@@ -1787,7 +1787,7 @@ static DerivedMesh *base_skin(DerivedMesh *origdm,
if (!bm)
return NULL;
- result = CDDM_from_bmesh(bm, FALSE);
+ result = CDDM_from_bmesh(bm, false);
BM_mesh_free(bm);
CDDM_calc_edges(result);