diff options
author | Dave Parks <davep@lindenlab.com> | 2012-05-25 17:58:12 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2012-05-25 17:58:12 -0500 |
commit | e3a5125b41def6dbc27c6852f48b45da7377bb50 (patch) | |
tree | fbde12364475b623a5e928a8f8ab5041226483db /indra/newview/llvoavatarself.cpp | |
parent | abaf0155b47c5e020efa7e4600524c0c6d49319f (diff) |
MAINT-616 Potential fix for corrupted mip maps.
Diffstat (limited to 'indra/newview/llvoavatarself.cpp')
-rw-r--r-- | indra/newview/llvoavatarself.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvoavatarself.cpp b/indra/newview/llvoavatarself.cpp index fcfa0b7d15..c99e94e60c 100644 --- a/indra/newview/llvoavatarself.cpp +++ b/indra/newview/llvoavatarself.cpp @@ -2605,7 +2605,7 @@ void LLVOAvatarSelf::deleteScratchTextures() namep; namep = sScratchTexNames.getNextData() ) { - LLImageGL::deleteTextures(LLTexUnit::TT_TEXTURE, 0, 1, (U32 *)namep ); + LLImageGL::deleteTextures(LLTexUnit::TT_TEXTURE, 0, -1, 1, (U32 *)namep ); stop_glerror(); } |