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>2004-01-06 23:25:50 +0300
committerTon Roosendaal <ton@blender.org>2004-01-06 23:25:50 +0300
commite4d0d9cc449b87e9f920b55c1281c3a79a324345 (patch)
tree8a14a1ee08924bdec05f5a8b68c8e85e0462c66f /source/blender/blenloader
parentbb6a4cf63fb553dce6e6b33887bd8e922fb1407d (diff)
- decided to use a new variable for the new exposure option, instead of
re-using old one. New one = 'exp'. - at first I used the old 'exposure' value, and just mapped it to 0. this causes a problem with upward compatibility, old blenders then render a black picture. is too confusing! - warning; exposure values saved with commit of last week will get lost.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/readfile.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index e44aae82ae2..701d621bafc 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -3972,7 +3972,6 @@ static void do_versions(Main *main)
while(wrld) {
if(wrld->range==0.0) {
wrld->range= 1.0/wrld->exposure;
- wrld->exposure= 0.0;
}
wrld= wrld->id.next;
}