diff --git a/src/osg/ArgumentParser.cpp b/src/osg/ArgumentParser.cpp index a02748870..ec1a90f0e 100644 --- a/src/osg/ArgumentParser.cpp +++ b/src/osg/ArgumentParser.cpp @@ -15,7 +15,8 @@ bool ArgumentParser::isOption(const char* str) bool ArgumentParser::isString(const char* str) { if (!str) return false; - return !isOption(str); + return true; + //return !isOption(str); } bool ArgumentParser::isNumber(const char* str)