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:
authorRobert Guetzkow <gitcommit@outlook.de>2021-01-29 15:16:41 +0300
committerRobert Guetzkow <gitcommit@outlook.de>2021-01-29 15:16:41 +0300
commitb8feac9c814f01521ed0a8d88dac672a0aa705fd (patch)
tree5dd81222e48c470e92e84d01e52b7de05172fcf9
parent02bb3595d05476e49763d1b92ef609e7d45111ff (diff)
parent821df20797be514b8aee81b8ae73d3efe486bd29 (diff)
Merge branch 'blender-v2.92-release'
-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 c42d891c389..ab8c1b0bb3f 100644
--- a/source/blender/makesrna/intern/rna_particle.c
+++ b/source/blender/makesrna/intern/rna_particle.c
@@ -4016,7 +4016,7 @@ static void rna_def_particle_system(BlenderRNA *brna)
RNA_def_function_flag(func, FUNC_USE_REPORTS);
parm = RNA_def_pointer(func, "modifier", "ParticleSystemModifier", "", "Particle modifier");
RNA_def_parameter_flags(parm, PROP_NEVER_NULL, PARM_REQUIRED);
- prop = RNA_def_pointer(func, "particle", "Particle", "", "Particle");
+ parm = RNA_def_pointer(func, "particle", "Particle", "", "Particle");
RNA_def_parameter_flags(parm, PROP_NEVER_NULL, PARM_REQUIRED);
RNA_def_int(func, "particle_no", 0, INT_MIN, INT_MAX, "Particle no", "", INT_MIN, INT_MAX);
RNA_def_int(func, "uv_no", 0, INT_MIN, INT_MAX, "UV no", "", INT_MIN, INT_MAX);