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:
authorJanne Karhu <jhkarh@gmail.com>2008-09-18 21:42:17 +0400
committerJanne Karhu <jhkarh@gmail.com>2008-09-18 21:42:17 +0400
commita283e7e4af8b1016ac2162cdb0f7b2cc10f94376 (patch)
tree3ee3a6c895864b8255da5f132214f9a34e3feebd
parentf7113fd267864a081b7e4640dd14f4fca835a5a4 (diff)
A typo in my fix for bug #11740 caused problems with at least grid distributed particles.
-rw-r--r--source/blender/blenkernel/intern/particle_system.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/particle_system.c b/source/blender/blenkernel/intern/particle_system.c
index 07b709efcbe..11e69262bbe 100644
--- a/source/blender/blenkernel/intern/particle_system.c
+++ b/source/blender/blenkernel/intern/particle_system.c
@@ -156,7 +156,7 @@ void psys_reset(ParticleSystem *psys, int mode)
int p=0;
for(; p<psys->totpart; p++, pa++)
- pa->flag = PARS_NO_DISP;
+ pa->flag |= PARS_NO_DISP;
}
/* reset children */