From f906f5cc58559bc3e4d5593921fd2121f3c04d6b Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 21 Dec 2017 11:13:22 +0100 Subject: Depsgraph: Remove eval priority from debugger This needs to be redone anyway, to correspond to possibly new priorities calculated for evaluaiton. --- source/blender/makesrna/intern/rna_depsgraph.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/makesrna/intern/rna_depsgraph.c') diff --git a/source/blender/makesrna/intern/rna_depsgraph.c b/source/blender/makesrna/intern/rna_depsgraph.c index adb99acef1f..14668001428 100644 --- a/source/blender/makesrna/intern/rna_depsgraph.c +++ b/source/blender/makesrna/intern/rna_depsgraph.c @@ -51,7 +51,7 @@ static void rna_Depsgraph_debug_graphviz(Depsgraph *graph, const char *filename) if (f == NULL) { return; } - DEG_debug_graphviz(graph, f, "Depsgraph", false); + DEG_debug_graphviz(graph, f, "Depsgraph"); fclose(f); } -- cgit v1.2.3