From 0a429e97f7b8a30a66abc4fd864e9e30a162a19d Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 25 Aug 2010 14:34:08 +0000 Subject: [PATCH] Changed --flat to --flat-shaded to avoid conflict with oiginal --flat ratio control. --- examples/osgtext3D/osgtext3D.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/osgtext3D/osgtext3D.cpp b/examples/osgtext3D/osgtext3D.cpp index 09930710d..3ba339fb7 100644 --- a/examples/osgtext3D/osgtext3D.cpp +++ b/examples/osgtext3D/osgtext3D.cpp @@ -95,7 +95,7 @@ int main(int argc, char** argv) while(arguments.read("--no-outline")) { outline = false; } bool smooth = true; - while(arguments.read("--flat")) { smooth = false; } + while(arguments.read("--flat-shaded")) { smooth = false; } while(arguments.read("--smooth")) { smooth = false; } unsigned int numSamples = 10;