From 3810d3b85003d22dd2195c31d5b537fe3a473bf9 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 30 Aug 2005 09:33:42 +0000 Subject: [PATCH] From Norman Vine, fixed small typo. --- src/osgDB/DatabasePager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgDB/DatabasePager.cpp b/src/osgDB/DatabasePager.cpp index c5007fe3e..7e8b80239 100644 --- a/src/osgDB/DatabasePager.cpp +++ b/src/osgDB/DatabasePager.cpp @@ -62,7 +62,7 @@ DatabasePager::DatabasePager() if( (ptr = getenv("OSG_DO_PRE_COMPILE")) != 0) { _doPreCompile = strcmp(ptr,"yes")==0 || strcmp(ptr,"YES")==0 || - strcmp(ptr,"ON")==0 || strcmp(ptr,"ON")==0; + strcmp(ptr,"on")==0 || strcmp(ptr,"ON")==0; } _targetFrameRate = 100.0;