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:
authorLuca Rood <dev@lucarood.com>2017-01-25 08:27:07 +0300
committerLuca Rood <dev@lucarood.com>2017-01-25 09:05:52 +0300
commite843f42e6615978af8450a55d582c3ae4db9f4d6 (patch)
tree7a84bf5aefd528100a05bdcf6f9da6a547b7a014
parent96f6ec07fb1041dfbc6a90dba0b10cdfac14a86e (diff)
Review: Cleanup
-rw-r--r--source/blender/modifiers/intern/MOD_surfacedeform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/modifiers/intern/MOD_surfacedeform.c b/source/blender/modifiers/intern/MOD_surfacedeform.c
index 877b888a0e7..bfbf093b7fd 100644
--- a/source/blender/modifiers/intern/MOD_surfacedeform.c
+++ b/source/blender/modifiers/intern/MOD_surfacedeform.c
@@ -987,7 +987,7 @@ static bool surfacedeformBind(SurfaceDeformModifierData *smd, float (*vertexCos)
.bind_verts = smd->verts,
.vertexCos = vertexCos,
.falloff = smd->falloff,
- .success = 1};
+ .success = MOD_SDEF_BIND_RESULT_SUCCESS};
BLI_task_parallel_range_ex(0, numverts, &data, NULL, 0, bindVert,
numverts > 10000, false);