diff options
| author | Oz Linden <oz@lindenlab.com> | 2011-12-12 09:04:33 -0500 |
|---|---|---|
| committer | Oz Linden <oz@lindenlab.com> | 2011-12-12 09:04:33 -0500 |
| commit | f1a4593e471f4ae0e08767f73f100add683965bf (patch) | |
| tree | 0f0f42a772c9c739ee5e726a8044e2888d17b735 /indra/llprimitive/lltextureanim.cpp | |
| parent | d7e6f21981b0a00c0d89096cc17bab07be60e51a (diff) | |
| parent | 50a57ba9fec0435a990338398d5c4f23c5cc91f0 (diff) | |
merge changes for vmrg-204
Diffstat (limited to 'indra/llprimitive/lltextureanim.cpp')
| -rw-r--r-- | indra/llprimitive/lltextureanim.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llprimitive/lltextureanim.cpp b/indra/llprimitive/lltextureanim.cpp index 398af4e6e8..185a3f69c0 100644 --- a/indra/llprimitive/lltextureanim.cpp +++ b/indra/llprimitive/lltextureanim.cpp @@ -168,8 +168,8 @@ void LLTextureAnim::unpackTAMessage(LLDataPacker &dp) mMode = data[0]; mFace = data[1]; - mSizeX = llmax((U8)1, data[2]); - mSizeY = llmax((U8)1, data[3]); + mSizeX = data[2]; + mSizeY = data[3]; htonmemcpy(&mStart, data + 4, MVT_F32, sizeof(F32)); htonmemcpy(&mLength, data + 8, MVT_F32, sizeof(F32)); htonmemcpy(&mRate, data + 12, MVT_F32, sizeof(F32)); |
