diff options
author | Jacek Antonelli | 2008-08-15 23:44:56 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:56 -0500 |
commit | c07901e29ed545bbb02e3bddf148fe1104b94e9f (patch) | |
tree | f1ada64ce834acd7d92a425efb96c4b86bcf16b1 /linden/indra/llcharacter/llkeyframemotionparam.cpp | |
parent | Second Life viewer sources 1.15.0.2 (diff) | |
download | meta-impy-c07901e29ed545bbb02e3bddf148fe1104b94e9f.zip meta-impy-c07901e29ed545bbb02e3bddf148fe1104b94e9f.tar.gz meta-impy-c07901e29ed545bbb02e3bddf148fe1104b94e9f.tar.bz2 meta-impy-c07901e29ed545bbb02e3bddf148fe1104b94e9f.tar.xz |
Second Life viewer sources 1.15.1.3
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llcharacter/llkeyframemotionparam.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/linden/indra/llcharacter/llkeyframemotionparam.cpp b/linden/indra/llcharacter/llkeyframemotionparam.cpp index 5970909..d24b8a6 100644 --- a/linden/indra/llcharacter/llkeyframemotionparam.cpp +++ b/linden/indra/llcharacter/llkeyframemotionparam.cpp | |||
@@ -187,6 +187,12 @@ BOOL LLKeyframeMotionParam::onUpdate(F32 time, U8* joint_mask) | |||
187 | ParameterizedMotion* firstMotion = NULL; | 187 | ParameterizedMotion* firstMotion = NULL; |
188 | ParameterizedMotion* secondMotion = NULL; | 188 | ParameterizedMotion* secondMotion = NULL; |
189 | 189 | ||
190 | if (NULL == paramValue) // unexpected, but... | ||
191 | { | ||
192 | llwarns << "paramValue == NULL" << llendl; | ||
193 | continue; | ||
194 | } | ||
195 | |||
190 | for (ParameterizedMotion* paramMotion = motionList->getFirstData(); paramMotion; paramMotion = motionList->getNextData()) | 196 | for (ParameterizedMotion* paramMotion = motionList->getFirstData(); paramMotion; paramMotion = motionList->getNextData()) |
191 | { | 197 | { |
192 | paramMotion->first->onUpdate(time, joint_mask); | 198 | paramMotion->first->onUpdate(time, joint_mask); |