From c80c596194b998bd7cd5ba4ec0eb764e19d323b4 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 22 Dec 2013 04:45:00 +1100 Subject: Fix for mesh deform modifier missing copy for flag. --- source/blender/makesdna/DNA_modifier_types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/makesdna/DNA_modifier_types.h') diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h index b3c7427074c..a3792e95804 100644 --- a/source/blender/makesdna/DNA_modifier_types.h +++ b/source/blender/makesdna/DNA_modifier_types.h @@ -603,7 +603,7 @@ typedef struct MeshDeformModifierData { struct Object *object; /* mesh object */ char defgrp_name[64]; /* optional vertexgroup name, MAX_VGROUP_NAME */ - short gridsize, flag, mode, pad; + short gridsize, flag, pad[2]; /* result of static binding */ MDefInfluence *bindinfluences; /* influences */ @@ -614,7 +614,7 @@ typedef struct MeshDeformModifierData { /* result of dynamic binding */ MDefCell *dyngrid; /* grid with dynamic binding cell points */ MDefInfluence *dyninfluences; /* dynamic binding vertex influences */ - int *dynverts, *pad2; /* is this vertex bound or not? */ + int *dynverts; /* is this vertex bound or not? */ int dyngridsize; /* size of the dynamic bind grid */ int totinfluence; /* total number of vertex influences */ float dyncellmin[3]; /* offset of the dynamic bind grid */ -- cgit v1.2.3