SL-731 - bug fix
parent
72010fba4d
commit
f196d8b18d
|
|
@ -501,7 +501,7 @@ void LLCharacter::updateVisualParams()
|
|||
}
|
||||
|
||||
LLAnimPauseRequest LLCharacter::requestPause()
|
||||
{
|
||||
{X
|
||||
mMotionController.pauseAllMotions();
|
||||
return mPauseRequest;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1309,7 +1309,10 @@ BOOL LLVOVolume::calcLOD()
|
|||
{
|
||||
LLViewerObject* childp = *iter;
|
||||
LLVOVolume *child_volp = dynamic_cast<LLVOVolume*>(childp);
|
||||
total_tris += child_volp->getTriangleCount();
|
||||
if (child_volp)
|
||||
{
|
||||
total_tris += child_volp->getTriangleCount();
|
||||
}
|
||||
}
|
||||
setDebugText(llformat("TRIS %d TOTAL %d", getTriangleCount(), total_tris));
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue