1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-21 08:53:52 +00:00

Merge pull request #866 from ace13/build-fix

Fix build error with OSG >=3.3.3 <3.4.0
This commit is contained in:
scrawl 2015-12-26 00:28:34 +01:00
commit a7c886721c
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@
#include <osg/Version>
#if OSG_VERSION_LESS_THAN(3,4,0)
#if OSG_VERSION_LESS_THAN(3,3,3)
#include "objectcache.hpp"

View file

@ -19,7 +19,7 @@
#include <osg/Version>
#if OSG_VERSION_GREATER_OR_EQUAL(3,4,0)
#if OSG_VERSION_GREATER_OR_EQUAL(3,3,3)
#include <osgDB/ObjectCache>
#else