From 07ba07dc62693d2f3ed0299fbe7155da282917e2 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 26 Apr 2002 08:25:51 +0000 Subject: [PATCH] Fixed remaining MAX_PATH usuage, replacing it with the new DX_MAX_PATH, this should solve compile problems under VisualStudio .NET. --- src/osgPlugins/dx/DXWriter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgPlugins/dx/DXWriter.h b/src/osgPlugins/dx/DXWriter.h index 16f224481..34aa86a67 100644 --- a/src/osgPlugins/dx/DXWriter.h +++ b/src/osgPlugins/dx/DXWriter.h @@ -30,7 +30,7 @@ namespace dx { struct WriterParms { bool set_default_color; // Give color to uncolored objects osg::Vec4 default_color; // Color to assign to uncolored objects - char outfile[ PATH_MAX ]; // Output pathname + char outfile[ DX_PATH_MAX ]; // Output pathname //bool binary_mode; // Write DX arrays in binary format WriterParms()