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:
authorCampbell Barton <ideasman42@gmail.com>2012-02-13 09:59:14 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-13 09:59:14 +0400
commit7d18115e14c2ae17de8399440a8c034bca5efa45 (patch)
treec959bb99387ce553b3d5720a90989e88f25405a2 /source/blender/modifiers/intern/MOD_bevel.c
parent68a97d168ddf3e9b3b83c6fd9374cccee6f60e0e (diff)
own error - mixup with BMO_slot_mat_get/set
Diffstat (limited to 'source/blender/modifiers/intern/MOD_bevel.c')
-rw-r--r--source/blender/modifiers/intern/MOD_bevel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_bevel.c b/source/blender/modifiers/intern/MOD_bevel.c
index 789244c6e88..91ff1ad0063 100644
--- a/source/blender/modifiers/intern/MOD_bevel.c
+++ b/source/blender/modifiers/intern/MOD_bevel.c
@@ -145,7 +145,7 @@ static DerivedMesh *applyModifier(ModifierData *md, struct Object *ob,
}
BMO_op_callf(bm, "bevel geom=%fe percent=%f use_even=%i use_dist=%i",
- EDGE_MARK, bmd->value, (bmd->flags & BME_BEVEL_EVEN)!=0, (bmd->flags & BME_BEVEL_DIST)!=0);
+ EDGE_MARK, bmd->value, (bmd->flags & BME_BEVEL_EVEN)!=0, (bmd->flags & BME_BEVEL_DIST) != 0);
BMO_pop(bm);
BLI_assert(em->looptris == NULL);