diff options
author | Brad Linden <brad@lindenlab.com> | 2024-06-11 16:03:30 -0700 |
---|---|---|
committer | Brad Linden <brad@lindenlab.com> | 2024-06-11 17:42:17 -0700 |
commit | 9775d7ea10ff87d913b1ba361a9204f961cd9c3f (patch) | |
tree | 949da961836c451557c809469e4a1ffe4e540b3b /indra/newview/gltf | |
parent | a7b0f9391146b42dd5cd5f47f845de81bfdb6820 (diff) | |
parent | 0870539264f7263ed17464413ee0b69058d511f6 (diff) |
Merge remote-tracking branch 'origin/release/maint-a' into project/gltf_development
Diffstat (limited to 'indra/newview/gltf')
-rw-r--r-- | indra/newview/gltf/animation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/gltf/animation.cpp b/indra/newview/gltf/animation.cpp index 8f53c28539..8b85eba3e5 100644 --- a/indra/newview/gltf/animation.cpp +++ b/indra/newview/gltf/animation.cpp @@ -198,7 +198,7 @@ void Animation::Sampler::getFrameInfo(Asset& asset, F32 time, U32& frameIndex, F return; } - for (U32 i = 0; i < mFrameTimes.size() - 1; i++) + for (U32 i = 0; i < (U32)mFrameTimes.size() - 1; i++) { if (time >= mFrameTimes[i] && time < mFrameTimes[i + 1]) { |