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:
authorDalai Felinto <dfelinto@gmail.com>2018-01-26 13:38:46 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-01-26 13:38:46 +0300
commitbd7060a87fd9f46c2bdd141e26934e8573c6e3f8 (patch)
tree55ced4da626eef0bc44e595d5829c40fce2a41b4 /source/blender/collada/EffectExporter.cpp
parent16a3ae580c144af1077fbb6d2ee522d11bf9dfe7 (diff)
Fix crash on Collada exporter
Diffstat (limited to 'source/blender/collada/EffectExporter.cpp')
-rw-r--r--source/blender/collada/EffectExporter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/collada/EffectExporter.cpp b/source/blender/collada/EffectExporter.cpp
index 87392352a48..5e7f92047d3 100644
--- a/source/blender/collada/EffectExporter.cpp
+++ b/source/blender/collada/EffectExporter.cpp
@@ -67,7 +67,7 @@ EffectsExporter::EffectsExporter(COLLADASW::StreamWriter *sw, const ExportSettin
bool EffectsExporter::hasEffects(Scene *sce)
{
- FOREACH_SCENE_OBJECT(scene, ob)
+ FOREACH_SCENE_OBJECT(sce, ob)
{
int a;
for (a = 0; a < ob->totcol; a++) {