summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorandreykproductengine <andreykproductengine@lindenlab.com>2018-01-18 18:34:08 +0200
committerandreykproductengine <andreykproductengine@lindenlab.com>2018-01-18 18:34:08 +0200
commit2c0cfd9185dda2fa33d2a7603d2959c827357aba (patch)
tree911d070f94b184359e0faeb2cf3d5901a51028f2 /indra
parentaf3bf74eea532fff81c7b4acad59e1f5b4545fbd (diff)
MAINT-3859 Remade to account from smoothed looping
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llviewertextureanim.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/indra/newview/llviewertextureanim.cpp b/indra/newview/llviewertextureanim.cpp
index b94f6f4569..9603811066 100644
--- a/indra/newview/llviewertextureanim.cpp
+++ b/indra/newview/llviewertextureanim.cpp
@@ -138,12 +138,16 @@ S32 LLViewerTextureAnim::animateTextures(F32 &off_s, F32 &off_t,
{
frame_counter = fmod(frame_counter, full_length);
}
-
- frame_counter = llmin(full_length - 1.f, frame_counter);
+ else
+ {
+ frame_counter = llmin(full_length - 1.f, frame_counter);
+ }
if (!(mMode & SMOOTH))
{
frame_counter = (F32)llfloor(frame_counter + 0.01f);
+ // account for 0.01, we shouldn't step over full length
+ frame_counter = llmin(full_length - 1.f, frame_counter);
}
if (mMode & PING_PONG)