diff options
author | Oz Linden <oz@lindenlab.com> | 2013-05-10 09:51:08 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2013-05-10 09:51:08 -0400 |
commit | 73e6711268adb93025386ffb766055125f0d849e (patch) | |
tree | e22f283c6b11a4ff7b826fef63eea1d75aea9ab2 /indra/llprimitive | |
parent | 186b60457808d5fb280531bc96aba8fc8b67ef12 (diff) | |
parent | 425f0128143b57bcb09e45488c6f20af8198584b (diff) |
merge changes for latest project changes
Diffstat (limited to 'indra/llprimitive')
-rw-r--r-- | indra/llprimitive/lltextureentry.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llprimitive/lltextureentry.cpp b/indra/llprimitive/lltextureentry.cpp index 691216e035..53816266eb 100644 --- a/indra/llprimitive/lltextureentry.cpp +++ b/indra/llprimitive/lltextureentry.cpp @@ -85,7 +85,7 @@ LLTextureEntry::LLTextureEntry(const LLTextureEntry &rhs) mMediaFlags = rhs.mMediaFlags; mGlow = rhs.mGlow; mMaterialID = rhs.mMaterialID; - + mMaterial = rhs.mMaterial; if (rhs.mMediaEntry != NULL) { // Make a copy mMediaEntry = new LLMediaEntry(*rhs.mMediaEntry); @@ -107,6 +107,7 @@ LLTextureEntry &LLTextureEntry::operator=(const LLTextureEntry &rhs) mMediaFlags = rhs.mMediaFlags; mGlow = rhs.mGlow; mMaterialID = rhs.mMaterialID; + mMaterial = rhs.mMaterial; if (mMediaEntry != NULL) { delete mMediaEntry; } |