From 4591c68d9502a121f19e32f32d1cd81ad0bf7906 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 19 Jul 2006 19:45:32 +0000 Subject: [PATCH] Fixed error in enum, completely perplexed how the error got in... --- src/osgUtil/IntersectVisitor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgUtil/IntersectVisitor.cpp b/src/osgUtil/IntersectVisitor.cpp index b2aca0286..9eb841b6d 100644 --- a/src/osgUtil/IntersectVisitor.cpp +++ b/src/osgUtil/IntersectVisitor.cpp @@ -186,7 +186,7 @@ IntersectVisitor::IntersectVisitor() // Initialize eyepoint to 0,0,0 setEyePoint(Vec3(0.0f,0.0f,0.0f)); - setLODSelectionMode(USE_HEIGHEST_LEVEL_OF_DETAIL); // orignal IntersectVisitor behavior + setLODSelectionMode(USE_HIGHEST_LEVEL_OF_DETAIL); // orignal IntersectVisitor behavior //setLODSelectionMode(USE_SEGMENT_START_POINT_AS_EYE_POINT_FOR_LOD_LEVEL_SELECTION); reset();