From 913e109f14d0d5164aa6f58e846de63f575cdf11 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Sat, 21 Feb 2015 12:47:29 +0500 Subject: Correction for RNA getter of use_save_buffers --- source/blender/makesrna/intern/rna_scene.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source') diff --git a/source/blender/makesrna/intern/rna_scene.c b/source/blender/makesrna/intern/rna_scene.c index 52b798a8aee..c5eed3ff18c 100644 --- a/source/blender/makesrna/intern/rna_scene.c +++ b/source/blender/makesrna/intern/rna_scene.c @@ -754,7 +754,7 @@ static int rna_RenderSettings_save_buffers_get(PointerRNA *ptr) else if (!BKE_scene_use_new_shading_nodes(scene)) return (rd->scemode & (R_EXR_TILE_FILE | R_FULL_SAMPLE)) != 0; else - return (rd->scemode & R_EXR_TILE_FILE); + return (rd->scemode & R_EXR_TILE_FILE) != 0; } static int rna_RenderSettings_full_sample_get(PointerRNA *ptr) -- cgit v1.2.3