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
path: root/source
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2015-02-21 10:47:29 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-02-21 10:47:29 +0300
commit913e109f14d0d5164aa6f58e846de63f575cdf11 (patch)
tree7ae0e92d3bf8675b1e885d4182d944c08eba23d2 /source
parent09893ec7fce6672ccb377bdb046e6c8a9a415a37 (diff)
Correction for RNA getter of use_save_buffers
Diffstat (limited to 'source')
-rw-r--r--source/blender/makesrna/intern/rna_scene.c2
1 files changed, 1 insertions, 1 deletions
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)