Fixed warning related to where _increasingFlags is an unsigned short and 0xffffff is being
truncated, spotted by Tom Jolly.
This commit is contained in:
parent
824e77e518
commit
f0f40cbf88
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user