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-12-02 18:54:54 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2007-12-02 18:54:54 +0300
commit6a9c6674ca43d9f05d597d7a94280911e3e97b9d (patch)
treee8d61f1b269393416ca23b63ebd0b04055742869 /source/blender/makesdna
parent303819276fda483a9c75b76aea8a7201915c21af (diff)
Particles
========= Bugfix for crash with disabling the particles system and saving/loading files, the way it detected if the mesh had changed could not work correct.
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 982df45e77a..51f0e961709 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -401,7 +401,8 @@ typedef struct ParticleSystemModifierData {
ModifierData modifier;
struct ParticleSystem *psys;
struct DerivedMesh *dm;
- short flag, rt[3];
+ int totdmvert, totdmedge, totdmface;
+ short flag, rt;
} ParticleSystemModifierData;
typedef enum {