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>2018-03-07 12:46:27 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-03-07 12:46:27 +0300
commitf02af0407fbcb4924a1a1f938629c814259ce086 (patch)
treed4b05207886977e9cd5b47fdeecac0cbeb6bd818 /source/blender/blenloader
parentb9ae517794765d6a16604de2803145e859bafb9d (diff)
Cleanup: use _BEGIN suffix for group iterators
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/writefile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/writefile.c b/source/blender/blenloader/intern/writefile.c
index c09b6d627ff..50fd2a075f0 100644
--- a/source/blender/blenloader/intern/writefile.c
+++ b/source/blender/blenloader/intern/writefile.c
@@ -1346,7 +1346,7 @@ static void write_particlesettings(WriteData *wd, ParticleSettings *part)
if (dw->ob != NULL) {
dw->index = 0;
if (part->dup_group) { /* can be NULL if lining fails or set to None */
- FOREACH_GROUP_OBJECT(part->dup_group, object)
+ FOREACH_GROUP_OBJECT_BEGIN(part->dup_group, object)
{
if (object != dw->ob) {
dw->index++;