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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2011-12-04 01:27:19 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-12-04 01:27:19 +0400
commit341aa730bd042ccf1b1511cf32db485c7cfcdfc8 (patch)
tree7c48da9dbb7f11106af5de00b0936e5ec90855b1 /intern/cycles/app/cycles_xml.cpp
parent03b807e7dcbd186ce75a726c6935e96e855b8290 (diff)
Fix cycles compile issue after last commit.
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 8abc060af47..7cd190f877d 100644
--- a/intern/cycles/app/cycles_xml.cpp
+++ b/intern/cycles/app/cycles_xml.cpp
@@ -454,7 +454,7 @@ static void xml_read_shader_graph(const XMLReadState& state, Shader *shader, pug
xml_read_ustring(&attr->attribute, node, "attribute");
snode = attr;
}
- else if(string_ieuals(node.name(), "camera")) {
+ else if(string_iequals(node.name(), "camera")) {
snode = new CameraNode();
}
else if(string_iequals(node.name(), "fresnel")) {