diff options
Diffstat (limited to 'indra/newview')
-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 367912f45e..cf61994fea 100644 --- a/indra/newview/llvovolume.cpp +++ b/indra/newview/llvovolume.cpp @@ -1137,7 +1137,7 @@ void LLVOVolume::regenFaces() // If the face had media on it, this will have broken the link between the LLViewerMediaTexture and the face. // Re-establish the link. - if(mMediaImplList.size() > i) + if((int)mMediaImplList.size() > i) { if(mMediaImplList[i]) { |