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:
authorThomas Dinges <blender@dingto.org>2012-06-21 12:02:18 +0400
committerThomas Dinges <blender@dingto.org>2012-06-21 12:02:18 +0400
commit3ba31f048179af054252274b17958d94315c88cf (patch)
tree9af71e4c3b5dc90614e30039fd5095027cfa7955 /intern/cycles/app/cycles_xml.cpp
parentfae0b2068b2287fdce76116ff5e0503040f5be61 (diff)
* Fix for the Cycles XML commit yesterday, blur_glossy has a different internal variable name.
Diffstat (limited to 'intern/cycles/app/cycles_xml.cpp')
-rw-r--r--intern/cycles/app/cycles_xml.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/app/cycles_xml.cpp b/intern/cycles/app/cycles_xml.cpp
index 4c1b460839e..5ec5cb929d6 100644
--- a/intern/cycles/app/cycles_xml.cpp
+++ b/intern/cycles/app/cycles_xml.cpp
@@ -277,7 +277,7 @@ static void xml_read_integrator(const XMLReadState& state, pugi::xml_node node)
xml_read_bool(&integrator->transparent_shadows, node, "transparent_shadows");
xml_read_bool(&integrator->no_caustics, node, "no_caustics");
- xml_read_float(&integrator->blur_glossy, node, "blur_glossy");
+ xml_read_float(&integrator->filter_glossy, node, "blur_glossy");
xml_read_int(&integrator->seed, node, "seed");
xml_read_float(&integrator->sample_clamp, node, "sample_clamp");