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>2015-04-22 08:54:14 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-04-22 08:54:14 +0300
commite1a53b6d52f1ce3598e9e35b96eaab2318aba4ad (patch)
treecb101a40339aa10e102a8282c73e20105f50b1ea /source/blender/modifiers/intern/MOD_mirror.c
parenta8adeeb6fbd3b8c60ba868ea70032aa052e60301 (diff)
Fix T44475: Merge option of Mirror Modifier behavior reversed.
Glitch in rB57d9badc.
Diffstat (limited to 'source/blender/modifiers/intern/MOD_mirror.c')
-rw-r--r--source/blender/modifiers/intern/MOD_mirror.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_mirror.c b/source/blender/modifiers/intern/MOD_mirror.c
index d34d68d4dee..73bc61e5519 100644
--- a/source/blender/modifiers/intern/MOD_mirror.c
+++ b/source/blender/modifiers/intern/MOD_mirror.c
@@ -94,7 +94,7 @@ static DerivedMesh *doMirrorOnAxis(MirrorModifierData *mmd,
int axis)
{
const float tolerance_sq = mmd->tolerance * mmd->tolerance;
- const bool do_vtargetmap = (mmd->flag & MOD_MIR_NO_MERGE) != 0;
+ const bool do_vtargetmap = (mmd->flag & MOD_MIR_NO_MERGE) == 0;
int tot_vtargetmap = 0; /* total merge vertices */
DerivedMesh *result;