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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2016-02-23 06:22:13 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2016-02-23 06:22:13 +0300
commitf5872d2747b8caef60a0b6201524a2c5b7fb029e (patch)
tree3f84e57ee19c707891fd443f4ae8ce14e9ae1478
parente4e21480d6331903c90ab073746484498441e1ac (diff)
Fix T47531: crash with particle roughness curve mapping, after fix for T46382.
-rw-r--r--source/blender/blenkernel/intern/particle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/particle.c b/source/blender/blenkernel/intern/particle.c
index bc3091710da..d02308b6482 100644
--- a/source/blender/blenkernel/intern/particle.c
+++ b/source/blender/blenkernel/intern/particle.c
@@ -2113,7 +2113,7 @@ static bool psys_thread_context_init_path(ParticleThreadContext *ctx, ParticleSi
ctx->clumpcurve = NULL;
}
if ((part->child_flag & PART_CHILD_USE_ROUGH_CURVE) && part->roughcurve) {
- ctx->clumpcurve = curvemapping_copy(part->roughcurve);
+ ctx->roughcurve = curvemapping_copy(part->roughcurve);
curvemapping_changed_all(ctx->roughcurve);
}
else {