diff options
| -rw-r--r-- | indra/newview/llphysicsmotion.cpp | 9 | 
1 files changed, 8 insertions, 1 deletions
| diff --git a/indra/newview/llphysicsmotion.cpp b/indra/newview/llphysicsmotion.cpp index 67bb139a5e..4f6b155fa0 100644 --- a/indra/newview/llphysicsmotion.cpp +++ b/indra/newview/llphysicsmotion.cpp @@ -451,7 +451,14 @@ BOOL LLPhysicsMotion::onUpdate(F32 time)          //
          const F32 time_delta = time - mLastTime;
 -        if (time_delta > 3.0 || time_delta <= 0.01)
 +
 +	// Don't update too frequently, to avoid precision errors from small time slices.
 +	if (time_delta <= .01)
 +	{
 +		return FALSE;
 +	}
 +	
 +        if (time_delta > 3.0)
          {
                  mLastTime = time;
                  return FALSE;
 | 
