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>2010-10-30 14:19:30 +0400
committerJanne Karhu <jhkarh@gmail.com>2010-10-30 14:19:30 +0400
commita12d0fc8366d459d386f005e8b97bfdb72ea2f26 (patch)
treeb316bd3d3ffc4ebe6494e71925437ca59aefca33 /source/blender/makesdna/DNA_modifier_types.h
parent210915e3c722a04920eaa18e2faad793189659c6 (diff)
Fix for [#24409] Particle corruption after rendering with multires
* Also removed some unused flags from the particle modifier.
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index 0708698c40c..30b2503c677 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -548,12 +548,8 @@ typedef struct MeshDeformModifierData {
} MeshDeformModifierData;
typedef enum {
- eParticleSystemFlag_Loaded = (1<<0),
- eParticleSystemFlag_Pars = (1<<1),
- eParticleSystemFlag_FromCurve = (1<<2),
- eParticleSystemFlag_DM_changed = (1<<3),
- eParticleSystemFlag_Disabled = (1<<4),
- eParticleSystemFlag_psys_updated = (1<<5),
+ eParticleSystemFlag_Pars = (1<<0),
+ eParticleSystemFlag_psys_updated = (1<<1),
} ParticleSystemModifierFlag;
typedef struct ParticleSystemModifierData {