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-12 10:24:12 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-12 10:24:12 +0400
commit8b43813b69b36af55635028e18e9b179df217317 (patch)
treec6066dd2c5200c1972be1968c32cfc5050b15848 /source/blender/modifiers
parent467e49e5e594eebe52300594693501a6995ba070 (diff)
rename BM_ flags for `BMHeader->hflag` to BM_ELEM_ to be more clear that these flags apply to bmesh elements.
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_edgesplit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_edgesplit.c b/source/blender/modifiers/intern/MOD_edgesplit.c
index eec7c6badad..e3f4e50e243 100644
--- a/source/blender/modifiers/intern/MOD_edgesplit.c
+++ b/source/blender/modifiers/intern/MOD_edgesplit.c
@@ -93,7 +93,7 @@ static DerivedMesh *doEdgeSplit(DerivedMesh *dm, EdgeSplitModifierData *emd, Obj
if (emd->flags & MOD_EDGESPLIT_FROMFLAG) {
BM_ITER(e, &iter, bm, BM_EDGES_OF_MESH, NULL) {
- if (BM_TestHFlag(e, BM_SHARP))
+ if (BM_TestHFlag(e, BM_ELEM_SHARP))
BMO_SetFlag(bm, e, EDGE_MARK);
}
}