From: Tim Moore <timoore33@gmail.com>
Date: Wed, 16 Feb 2011 15:46:24 +0000 (+0100)
Subject: don't assume that OSG 2.8.3 has PagedLOD options
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f106dc2a29dcfce59fe82083ef1c8e6c35767467;p=simgear.git

don't assume that OSG 2.8.3 has PagedLOD options

I was confused by my git svn import of the OSG tree.
---

diff --git a/simgear/scene/model/SGPagedLOD.hxx b/simgear/scene/model/SGPagedLOD.hxx
index a9e55d96..61530de3 100644
--- a/simgear/scene/model/SGPagedLOD.hxx
+++ b/simgear/scene/model/SGPagedLOD.hxx
@@ -20,8 +20,7 @@
 #include <simgear/structure/OSGVersion.hxx>
 
 #define SG_PAGEDLOD_HAS_OPTIONS \
-    (SG_OSG_VERSION >= 29005 \
-     || (SG_OSG_VERSION < 29000 && SG_OSG_VERSION >= 28003))
+    (SG_OSG_VERSION >= 29005)
 
 #include <osg/PagedLOD>
 #include <osgDB/Registry>