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:
authorTon Roosendaal <ton@blender.org>2005-05-26 23:49:05 +0400
committerTon Roosendaal <ton@blender.org>2005-05-26 23:49:05 +0400
commit07d048cae6b17e18b861c5c0db64758703108de5 (patch)
tree31e4cae5781e425a3774588e45602231e3bda234 /source/blender/blenloader/intern
parent1536167d132652bde82ca9ca81a2b74c6d6b0af3 (diff)
Disabled zblur render option when it was saved in testing builds. :)
Diffstat (limited to 'source/blender/blenloader/intern')
-rw-r--r--source/blender/blenloader/intern/readfile.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index e1835c497fb..f1f22b0642f 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -4664,8 +4664,10 @@ static void do_versions(Main *main)
sce->theDag = NULL;
sce->dagisvalid = 0;
+ sce->r.mode &= ~R_ZBLUR; // disabled for release
+
if(sce->r.postsat==0.0) sce->r.postsat= 1.0;
-
+
if(sce->r.zgamma==0.0) {
sce->r.focus= 0.9;
sce->r.zgamma= 1.0;