Fix T44475: Merge option of Mirror Modifier behavior reversed.

Glitch in rB57d9badc.
This commit is contained in:
2015-04-22 07:54:14 +02:00
parent a8adeeb6fb
commit e1a53b6d52

View File

@@ -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;