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:
authorMitchell Stokes <mogurijin@gmail.com>2011-06-01 09:40:48 +0400
committerMitchell Stokes <mogurijin@gmail.com>2011-06-01 09:40:48 +0400
commitb31385f3bd4af4e524fdeb719563dd293a86957c (patch)
treeb9b058961efb4acb2105705d6e6cd734513769fe /source/gameengine/Ketsji/BL_Action.cpp
parentc61d39ef6c254868ec750e98328c35cf7eca1c38 (diff)
BGE Animations: fixing a crash with looping armature actions.
Diffstat (limited to 'source/gameengine/Ketsji/BL_Action.cpp')
-rw-r--r--source/gameengine/Ketsji/BL_Action.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/gameengine/Ketsji/BL_Action.cpp b/source/gameengine/Ketsji/BL_Action.cpp
index 6cce2a3486d..5630179a049 100644
--- a/source/gameengine/Ketsji/BL_Action.cpp
+++ b/source/gameengine/Ketsji/BL_Action.cpp
@@ -154,7 +154,7 @@ void BL_Action::Update(float curtime)
break;
}
- if (!m_done)
+ if (!m_done && m_sg_contr)
InitIPO();
}