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:
authorRoland Hess <me@harkyman.com>2009-02-23 17:55:23 +0300
committerRoland Hess <me@harkyman.com>2009-02-23 17:55:23 +0300
commit8416db896cc88c78408c958f9e056b0ef28abb9b (patch)
tree5544aca703e1809c8c5ec47cccb6f1df822f5759 /source/blender/makesrna/intern/rna_particle.c
parentce5428cf4aad9224f71347dd9148a80140bd3149 (diff)
ADR_CODE conversion done for particle systems. Fixed typo in particle rna.
Diffstat (limited to 'source/blender/makesrna/intern/rna_particle.c')
-rw-r--r--source/blender/makesrna/intern/rna_particle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_particle.c b/source/blender/makesrna/intern/rna_particle.c
index fbf4e048f96..1e5ccfd9750 100644
--- a/source/blender/makesrna/intern/rna_particle.c
+++ b/source/blender/makesrna/intern/rna_particle.c
@@ -966,7 +966,7 @@ static void rna_def_particlesettings(BlenderRNA *brna)
RNA_def_property_range(prop, 0.0f, 200.0f);
RNA_def_property_ui_text(prop, "Brownian", "Specify the amount of brownian motion");
- prop= RNA_def_property(srna, "damp_factorq", PROP_FLOAT, PROP_NONE);
+ prop= RNA_def_property(srna, "damp_factor", PROP_FLOAT, PROP_NONE);
RNA_def_property_float_sdna(prop, NULL, "dampfac");
RNA_def_property_range(prop, 0.0f, 1.0f);
RNA_def_property_ui_text(prop, "Damp", "Specify the amount of damping");