From a826f5ee31c5c82ebe51c56a6e93ec95e60ea09f Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 27 Feb 2003 08:43:02 +0000 Subject: [PATCH] Changed incorrect instance "TRUE" to "FALSE" to match DepthMask state. --- src/osgPlugins/osg/Depth.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgPlugins/osg/Depth.cpp b/src/osgPlugins/osg/Depth.cpp index 3fa441a63..392099413 100644 --- a/src/osgPlugins/osg/Depth.cpp +++ b/src/osgPlugins/osg/Depth.cpp @@ -76,7 +76,7 @@ bool Depth_writeLocalData(const Object& obj,Output& fw) fw.indent() << "writeMask "; if (depth.getWriteMask()) fw << "TRUE" << std::endl; - else fw << "TRUE" << std::endl; + else fw << "FALSE" << std::endl; fw.indent() << "range " << depth.getZNear() << " " << depth.getZFar() << std::endl;