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>2020-02-15 10:12:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-02-15 10:13:54 +0300
commitd8d1f66dbcb442e5323ff03a1995a904c5d83b8f (patch)
treeb951b6006790230233c236180d2a8ba8f3f0e7c5 /source/blender/makesdna
parentd936f6977fedaf5282c368bd32f545a76127770f (diff)
Fix warp modifier invert vertex group duplicate flag
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 7a61118921d..2c19d4655d7 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -1323,11 +1323,10 @@ typedef struct WarpModifierData {
char _pad[6];
} WarpModifierData;
-#define MOD_WARP_VOLUME_PRESERVE 1
-
/* WarpModifierData->flag */
enum {
- MOD_WARP_INVERT_VGROUP = (1 << 0),
+ MOD_WARP_VOLUME_PRESERVE = (1 << 0),
+ MOD_WARP_INVERT_VGROUP = (1 << 1),
};
typedef enum {