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:
authorSergey Sharybin <sergey.vfx@gmail.com>2014-10-04 18:20:14 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-10-04 18:20:33 +0400
commit4189a686b5f8ddfc143d1dca49e48ca51bc3b719 (patch)
tree339edae969fe802f1d5cc00e63e8168cc6756fef /source/blender
parent1a410fd79814b2812e50a854159259826ca76473 (diff)
Fix bad RNA enum from the previous commit
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/makesrna/intern/rna_render.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_render.c b/source/blender/makesrna/intern/rna_render.c
index c5750f56d28..b1f997a5f80 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);