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>2012-01-30 01:49:49 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-01-30 01:49:49 +0400
commit870aa901120fc8db499f9bea3a9a86006ef4cc3a (patch)
treeb39a0a390179ba117310532545ff146dd3bb8dc5 /source/blender/blenkernel/intern/dynamicpaint.c
parentde4eeb96946943289ac898525f09fc9c7afd4157 (diff)
parentb820ec4ae4a62a05fc9ac6ca9c93a17128675407 (diff)
svn merge ^/trunk/blender -r43733:43751
Diffstat (limited to 'source/blender/blenkernel/intern/dynamicpaint.c')
-rw-r--r--source/blender/blenkernel/intern/dynamicpaint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/dynamicpaint.c b/source/blender/blenkernel/intern/dynamicpaint.c
index 0d0e98b816f..f4e69624839 100644
--- a/source/blender/blenkernel/intern/dynamicpaint.c
+++ b/source/blender/blenkernel/intern/dynamicpaint.c
@@ -3557,7 +3557,7 @@ static int dynamicPaint_paintParticles(DynamicPaintSurface *surface,
/* Proceed only if particle is active */
if(pa->alive == PARS_UNBORN && (part->flag & PART_UNBORN)==0) continue;
else if(pa->alive == PARS_DEAD && (part->flag & PART_DIED)==0) continue;
- else if(pa->flag & PARS_NO_DISP || pa->flag & PARS_UNEXIST) continue;
+ else if(pa->flag & PARS_UNEXIST) continue;
/* for debug purposes check if any NAN particle proceeds
* For some reason they get past activity check, this should rule most of them out */