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:
authorCampbell Barton <ideasman42@gmail.com>2016-01-07 12:10:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-01-07 12:11:59 +0300
commit0778856268a77a323970ad5f3e2374664f592b0b (patch)
tree30e3ac9d6134ac33b36328e78039215a90a4b0e0 /source/blender/makesrna/intern/rna_object_api.c
parent54836956984b65ef75443475ca78d79e54647ca2 (diff)
Cleanup: remove unused scene arg
Diffstat (limited to 'source/blender/makesrna/intern/rna_object_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_object_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_object_api.c b/source/blender/makesrna/intern/rna_object_api.c
index ae8b3799bac..5645f018cad 100644
--- a/source/blender/makesrna/intern/rna_object_api.c
+++ b/source/blender/makesrna/intern/rna_object_api.c
@@ -167,7 +167,7 @@ static void dupli_render_particle_set(Scene *scene, Object *ob, int level, int e
if (enable)
psys_render_set(ob, psys, mat, mat, 1, 1, 0.f);
else
- psys_render_restore(scene, ob, psys);
+ psys_render_restore(ob, psys);
}
}