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>2010-03-14 23:18:15 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2010-03-14 23:18:15 +0300
commit114f437837a4b1711c85f0a3e229df04f2d0420d (patch)
tree5d281374856cea5c03dbe6c75c1faf3c2f0fc56e /source/blender/blenloader
parent149fe90a08d32b764875fb01a00b685df73b1ec7 (diff)
Fix crash reading files with animated particle properties.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 2bb03f35edd..3fe6a6f9914 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -3029,6 +3029,7 @@ static void direct_link_particlesettings(FileData *fd, ParticleSettings *part)
part->pd= newdataadr(fd, part->pd);
part->pd2= newdataadr(fd, part->pd2);
+ direct_link_animdata(fd, part->adt);
direct_link_partdeflect(part->pd);
direct_link_partdeflect(part->pd2);