1
0
Fork 0

- changed SGPropertyNode::UNKNOWN to SGPropertyNode::UNSPECIFIED

This commit is contained in:
curt 2001-06-29 03:47:55 +00:00
parent 1b8f9cd1b4
commit eb2b614117

View file

@ -80,8 +80,8 @@ static string getValueTypeString( const SGPropertyNode *node ) {
}
SGPropertyNode::Type type = node->getType();
if ( type == SGPropertyNode::UNKNOWN ) {
result = "unknown";
if ( type == SGPropertyNode::UNSPECIFIED ) {
result = "unspecified";
} else if ( type == SGPropertyNode::BOOL ) {
result = "bool";
} else if ( type == SGPropertyNode::INT ) {