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
path: root/source
diff options
context:
space:
mode:
authorDalai Felinto <dfelinto@gmail.com>2018-01-26 13:42:55 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-01-26 13:45:27 +0300
commitab77363619b1d2aee933e3cd59fe2a464bafd01c (patch)
tree55ced4da626eef0bc44e595d5829c40fce2a41b4 /source
parentde079abfbd707247d8bb8318116d1429b3279703 (diff)
Fix silly crash on Collada
Note: This was originally wrongly committed together with an outliner tooltip fix, re-committing separately now. See bd7060a87fd9.
Diffstat (limited to 'source')
-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++) {