[Bf-blender-cvs] [4189a68] master: Fix bad RNA enum from the previous commit

Sergey Sharybin noreply at git.blender.org
Sat Oct 4 16:20:37 CEST 2014


Commit: 4189a686b5f8ddfc143d1dca49e48ca51bc3b719
Author: Sergey Sharybin
Date:   Sat Oct 4 20:20:14 2014 +0600
Branches: master
https://developer.blender.org/rB4189a686b5f8ddfc143d1dca49e48ca51bc3b719

Fix bad RNA enum from the previous commit

===================================================================

M	source/blender/makesrna/intern/rna_render.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_render.c b/source/blender/makesrna/intern/rna_render.c
index c5750f5..b1f997a 100644
--- a/source/blender/makesrna/intern/rna_render.c
+++ b/source/blender/makesrna/intern/rna_render.c
@@ -688,6 +688,7 @@ static void rna_def_render_pass(BlenderRNA *brna)
 
 	static EnumPropertyItem render_pass_debug_type_items[] = {
 		{RENDER_PASS_DEBUG_BVH_TRAVERSAL_STEPS, "BVH_TRAVERSAL_STEPS", 0, "BVH Traversal Steps", ""},
+		{0, NULL, 0, NULL, NULL}
 	};
 
 	srna = RNA_def_struct(brna, "RenderPass", NULL);




More information about the Bf-blender-cvs mailing list