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-10-31 13:50:24 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-10-31 13:50:24 +0400
commit12ed0c64bc7062f46cd1307b5566e99064330733 (patch)
tree82d27db755d250546cc5edf61addd701c8f4cdbd /source/blender/editors/mesh/mesh_data.c
parent26748efc037ccc069e1a08642d124bdfc50c6862 (diff)
make use customdata typeoffset more, add an assert to ensure its to date.
Diffstat (limited to 'source/blender/editors/mesh/mesh_data.c')
-rw-r--r--source/blender/editors/mesh/mesh_data.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/mesh/mesh_data.c b/source/blender/editors/mesh/mesh_data.c
index a4640677a4e..5414ba2aefb 100644
--- a/source/blender/editors/mesh/mesh_data.c
+++ b/source/blender/editors/mesh/mesh_data.c
@@ -947,6 +947,7 @@ static void mesh_add_verts(Mesh *mesh, int len)
/* scan the input list and insert the new vertices */
+ /* set default flags */
mvert = &mesh->mvert[mesh->totvert];
for (i = 0; i < len; i++, mvert++)
mvert->flag |= SELECT;