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:
-rw-r--r--source/blender/blenkernel/intern/pointcache.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/pointcache.c b/source/blender/blenkernel/intern/pointcache.c
index 0dc192db8f0..affe95ffe78 100644
--- a/source/blender/blenkernel/intern/pointcache.c
+++ b/source/blender/blenkernel/intern/pointcache.c
@@ -1799,8 +1799,11 @@ static bool foreach_object_ptcache(Scene *scene,
if (current_object == object) {
continue;
}
- foreach_object_ptcache(
- scene, object, duplis, callback, callback_user_data);
+ foreach_object_ptcache(scene,
+ current_object,
+ duplis,
+ callback,
+ callback_user_data);
}
FOREACH_COLLECTION_OBJECT_RECURSIVE_END;
}