From 5c3a1b30694788ff35c4f1d9e6ab767df41a7d2a Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 29 Sep 2010 10:54:53 +0000 Subject: [PATCH] Fixed type of numberical constant --- src/osg/CullSettings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osg/CullSettings.cpp b/src/osg/CullSettings.cpp index 265eb68d1..2865c7756 100644 --- a/src/osg/CullSettings.cpp +++ b/src/osg/CullSettings.cpp @@ -35,7 +35,7 @@ void CullSettings::setDefaults() _smallFeatureCullingPixelSize = 2.0f; _computeNearFar = COMPUTE_NEAR_FAR_USING_BOUNDING_VOLUMES; - _nearFarRatio = 0.0005f; + _nearFarRatio = 0.0005; _impostorActive = true; _depthSortImpostorSprites = false; _impostorPixelErrorThreshold = 4.0f;