aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview
diff options
context:
space:
mode:
authorMcCabe Maxsted2011-04-14 22:34:55 -0700
committerMcCabe Maxsted2011-04-14 22:34:55 -0700
commit562b0ab82bf929ef338374f5b71ba5a3a3f5c267 (patch)
tree4ce99b45cdce56e8c94baad5580a04380a9f9bba /linden/indra/newview
parentAdded button for the full viewer to the minimap. Now need to think about the ... (diff)
downloadmeta-impy-562b0ab82bf929ef338374f5b71ba5a3a3f5c267.zip
meta-impy-562b0ab82bf929ef338374f5b71ba5a3a3f5c267.tar.gz
meta-impy-562b0ab82bf929ef338374f5b71ba5a3a3f5c267.tar.bz2
meta-impy-562b0ab82bf929ef338374f5b71ba5a3a3f5c267.tar.xz
Applied lineSegmentIntersectFix from the Cool Viewer, backported from SG2
Diffstat (limited to 'linden/indra/newview')
-rw-r--r--linden/indra/newview/llvovolume.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/newview/llvovolume.cpp b/linden/indra/newview/llvovolume.cpp
index 8666e4a..4a53d4e 100644
--- a/linden/indra/newview/llvovolume.cpp
+++ b/linden/indra/newview/llvovolume.cpp
@@ -2010,7 +2010,7 @@ BOOL LLVOVolume::lineSegmentIntersect(const LLVector3& start, const LLVector3& e
2010 if (face == -1) 2010 if (face == -1)
2011 { 2011 {
2012 start_face = 0; 2012 start_face = 0;
2013 end_face = volume->getNumFaces(); 2013 end_face = volume->getNumVolumeFaces();
2014 } 2014 }
2015 else 2015 else
2016 { 2016 {