diff --git a/examples/osgposter/PosterPrinter.cpp b/examples/osgposter/PosterPrinter.cpp index b97aa2fac..42f04abb4 100644 --- a/examples/osgposter/PosterPrinter.cpp +++ b/examples/osgposter/PosterPrinter.cpp @@ -219,9 +219,9 @@ void PosterIntersector::intersect( osgUtil::IntersectionVisitor& iv, osg::Drawab } /* PosterPrinter: The implementation class of high-res rendering */ -PosterPrinter::PosterPrinter() -: _isRunning(false), _isFinishing(false), _lastBindingFrame(0), +PosterPrinter::PosterPrinter(): _outputTiles(false), _outputTileExt("bmp"), + _isRunning(false), _isFinishing(false), _lastBindingFrame(0), _currentRow(0), _currentColumn(0), _camera(0), _finalPoster(0) { diff --git a/examples/osgposter/PosterPrinter.h b/examples/osgposter/PosterPrinter.h index 8b912e208..444d1e659 100644 --- a/examples/osgposter/PosterPrinter.h +++ b/examples/osgposter/PosterPrinter.h @@ -45,8 +45,8 @@ protected: } PagedNodeNameSet _pagedNodeNames; - unsigned int _needToApplyCount; unsigned int _appliedCount; + unsigned int _needToApplyCount; bool _addingCallbacks; };