From c0baa648dc58ca57a264be832beafc3bcb1e63da Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Wed, 5 Dec 2018 18:21:13 +0100 Subject: [PATCH] Minor cleanup in Laplacian deform modifier DNA code. --- source/blender/makesdna/DNA_modifier_types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h index c5045caec9c..1d8df99af7a 100644 --- a/source/blender/makesdna/DNA_modifier_types.h +++ b/source/blender/makesdna/DNA_modifier_types.h @@ -1539,9 +1539,9 @@ typedef struct LaplacianDeformModifierData { } LaplacianDeformModifierData; -/* Smooth modifier flags */ +/* Laplacian Deform modifier flags */ enum { - MOD_LAPLACIANDEFORM_BIND = 1, + MOD_LAPLACIANDEFORM_BIND = 1 << 0, }; /* many of these options match 'solidify' */