From c8623449296e7bf77dceb78ff11209077e736f2a Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 19 Dec 2008 12:46:21 +0000 Subject: [PATCH] Fixed warning --- include/osg/CopyOp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osg/CopyOp b/include/osg/CopyOp index ea1b702d9..e24dce44c 100644 --- a/include/osg/CopyOp +++ b/include/osg/CopyOp @@ -52,7 +52,7 @@ class OSG_EXPORT CopyOp DEEP_COPY_PRIMITIVES = 1<<8, DEEP_COPY_SHAPES = 1<<9, DEEP_COPY_UNIFORMS = 1<<10, - DEEP_COPY_ALL = 0xffffffff + DEEP_COPY_ALL = 0x7FFFFFFF }; typedef unsigned int CopyFlags;