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@pandora.be>2007-11-27 19:16:47 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2007-11-27 19:16:47 +0300
commitd53f147b7bbc6a171baeb45976cf5cfa666a7e16 (patch)
tree2ba08b5f2a115498a8a9a89c4b5ce8f9116f7985 /source/blender/blenloader/intern
parent64ef57c666f74a7f9d09c70906cea3fadf8afa2b (diff)
Particles
========= - Fix for bug in emission from vertices. - Fix for undo/redo refresh glitch.
Diffstat (limited to 'source/blender/blenloader/intern')
-rw-r--r--source/blender/blenloader/intern/readfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 65608507d0e..660376c3ff8 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -2975,7 +2975,7 @@ static void direct_link_modifiers(FileData *fd, ListBase *lb)
psmd->dm=0;
psmd->psys=newdataadr(fd, psmd->psys);
- psmd->flag|=eParticleSystemFlag_Loaded;
+ psmd->flag &= ~eParticleSystemFlag_psys_updated;
} else if (md->type==eModifierType_Explode) {
ExplodeModifierData *psmd = (ExplodeModifierData*) md;