summaryrefslogtreecommitdiff
path: root/indra/newview/llphysicsmotion.cpp
diff options
context:
space:
mode:
authorAndrey Lihatskiy <alihatskiy@productengine.com>2024-02-17 14:02:06 +0200
committerAndrey Lihatskiy <alihatskiy@productengine.com>2024-02-17 20:09:16 +0200
commit48b121ab03435507e2ed9a865de9f8aff992877a (patch)
tree28c491a7aebd00ad2ffcbdc833b980b67ffe2bb0 /indra/newview/llphysicsmotion.cpp
parent9e854b697a06abed2a0917fb6120445f176764f0 (diff)
viewer#826 Follow-up buildfix: update lldatapacker
Diffstat (limited to 'indra/newview/llphysicsmotion.cpp')
-rw-r--r--indra/newview/llphysicsmotion.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llphysicsmotion.cpp b/indra/newview/llphysicsmotion.cpp
index 98b8919660..3ac07626b0 100644
--- a/indra/newview/llphysicsmotion.cpp
+++ b/indra/newview/llphysicsmotion.cpp
@@ -460,7 +460,7 @@ bool LLPhysicsMotionController::onUpdate(F32 time, U8* joint_mask)
return true;
}
- BOOL update_visuals = false;
+ bool update_visuals = false;
for (motion_vec_t::iterator iter = mMotions.begin();
iter != mMotions.end();
++iter)
@@ -707,7 +707,7 @@ bool LLPhysicsMotion::onUpdate(F32 time)
const F32 min_delta = (1.0001f-lod_factor)*0.4f;
if (llabs(position_diff_local) > min_delta)
{
- update_visuals = TRUE;
+ update_visuals = true;
mPositionLastUpdate_local = position_new_local;
}
}