From f0f40cbf889045aa81a83985e7127aea35809e97 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 8 Aug 2002 15:10:58 +0000 Subject: [PATCH] Fixed warning related to where _increasingFlags is an unsigned short and 0xffffff is being truncated, spotted by Tom Jolly. --- src/osg/DOFTransform.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osg/DOFTransform.cpp b/src/osg/DOFTransform.cpp index 5c7d41416..5f225efd2 100644 --- a/src/osg/DOFTransform.cpp +++ b/src/osg/DOFTransform.cpp @@ -109,7 +109,7 @@ class DOFAnimationAppCallback : public osg::NodeCallback DOFTransform::DOFTransform(): _limitationFlags(0), _animationOn(true), - _increasingFlags(0xffffff) + _increasingFlags(0xffff) { //default zero-ed Vec3-s are fine for all //default idenetiy inverse matrix is fine: