From 340b9c1dfc6e81efc0fb1e1ffff78203ba6aeddc Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 9 Oct 2019 09:38:11 +0200 Subject: [PATCH] Fix missing clear of ID types tags Got lost in previous optimization commit. --- source/blender/depsgraph/intern/depsgraph_tag.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/depsgraph/intern/depsgraph_tag.cc b/source/blender/depsgraph/intern/depsgraph_tag.cc index 77b24d60b10..058ee4e9076 100644 --- a/source/blender/depsgraph/intern/depsgraph_tag.cc +++ b/source/blender/depsgraph/intern/depsgraph_tag.cc @@ -828,4 +828,5 @@ void DEG_ids_clear_recalc(Main *UNUSED(bmain), Depsgraph *depsgraph) deg_graph_clear_id_recalc_flags(id_node->id_orig); } } + memset(deg_graph->id_type_updated, 0, sizeof(deg_graph->id_type_updated)); }