]> git.mxchange.org Git - simgear.git/commitdiff
Use getNodeValue as initially planned
authorfredb <fredb>
Mon, 28 Aug 2006 19:38:23 +0000 (19:38 +0000)
committerfredb <fredb>
Mon, 28 Aug 2006 19:38:23 +0000 (19:38 +0000)
simgear/scene/model/persparam.hxx

index 8cf7283ecc498fda0e38e7e11cd1ccec96f9d4fc..776e0c9c7bbb45f4889c7a497d5b5cbb098de909 100755 (executable)
@@ -17,8 +17,8 @@ public:
     if ( node != 0 ) {
       SGPropertyNode_ptr rand_n = node->getNode( "random" );
       if ( rand_n != 0 ) {
-        _min = rand_n->getDoubleValue( "min", 0.0 );
-        _max = rand_n->getDoubleValue( "max", 1.0 );
+        _min = getNodeValue( rand_n, "min", (T)0 );
+        _max = getNodeValue( rand_n, "max", (T)1 );
         shuffle();
       } else {
         _var = _min = _max = getNodeValue( props, name, defval );