Fix T44475: Merge option of Mirror Modifier behavior reversed.

Glitch in rB57d9badc.
This commit is contained in:
Bastien Montagne 2015-04-22 07:54:14 +02:00
parent a8adeeb6fb
commit e1a53b6d52
Notes: blender-bot 2023-10-04 09:42:55 +02:00
Referenced by issue #44475, Merge option of Mirror Modifier behavior reversed
1 changed files with 1 additions and 1 deletions

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;