diff options
author | Anchor <none@none> | 2019-06-10 15:56:44 -0700 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2020-03-25 18:44:04 -0400 |
commit | 32f1dfa531062071ccf090b9c3d391b274caf02b (patch) | |
tree | 8672316c478943e66a76b0a7274bb8875d53459d /indra/newview/llvovolume.cpp | |
parent | a9191a83d9865c129cc483c33a8a338dc00f5cc9 (diff) |
[DRTVWR-476] - fix compiler errors 32 bit windows build
Diffstat (limited to 'indra/newview/llvovolume.cpp')
-rw-r--r-- | indra/newview/llvovolume.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp index 0a1efd564f..fa5938df04 100644 --- a/indra/newview/llvovolume.cpp +++ b/indra/newview/llvovolume.cpp @@ -2063,7 +2063,7 @@ void LLVOVolume::setNumTEs(const U8 num_tes) } else if(old_num_tes > num_tes && mMediaImplList.size() > num_tes) //old faces removed { - U8 end = mMediaImplList.size() ; + U8 end = (U8)(mMediaImplList.size()) ; for(U8 i = num_tes; i < end ; i++) { removeMediaImpl(i) ; |