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_array.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_array.c')
-rw-r--r--source/blender/modifiers/intern/MOD_array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_array.c b/source/blender/modifiers/intern/MOD_array.c
index 77fa7d8c3f0..ec5fc4e43b4 100644
--- a/source/blender/modifiers/intern/MOD_array.c
+++ b/source/blender/modifiers/intern/MOD_array.c
@@ -549,7 +549,7 @@ static DerivedMesh *arrayModifier_doArray(ArrayModifierData *amd,
/* Bump the stack level back down to match the adjustment up above */
BMO_pop(bm);
- result = CDDM_from_bmesh(bm, FALSE);
+ result = CDDM_from_bmesh(bm, false);
if ((dm->dirty & DM_DIRTY_NORMALS) ||
((amd->offset_type & MOD_ARR_OFF_OBJ) && (amd->offset_ob)))