From 007a1e4659008215c45e6677bc5014662eb68113 Mon Sep 17 00:00:00 2001 From: curt Date: Thu, 12 Jul 2001 21:08:58 +0000 Subject: [PATCH] - changed the default value of the archive flag to false; it must now be set explicitly for a value to be saved --- simgear/misc/props.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simgear/misc/props.cxx b/simgear/misc/props.cxx index 5c835c50..66e2c116 100644 --- a/simgear/misc/props.cxx +++ b/simgear/misc/props.cxx @@ -297,7 +297,7 @@ SGPropertyNode::SGPropertyNode () _parent(0), _type(NONE), _tied(false), - _attr(READ|WRITE|ARCHIVE) + _attr(READ|WRITE) { } @@ -348,7 +348,7 @@ SGPropertyNode::SGPropertyNode (const SGPropertyNode &node) SGPropertyNode::SGPropertyNode (const string &name, int index, SGPropertyNode * parent) : _name(name), _index(index), _parent(parent), _type(NONE), - _tied(false), _attr(READ|WRITE|ARCHIVE) + _tied(false), _attr(READ|WRITE) { } -- 2.39.5