1
0
Fork 0

Patch from Julian Foad:

The present sets of bindings result in the throttle being "squared"
about its centre, which is silly.  This is because the "squared"
parameter is not set by the throttle binding, but the default is
"true".  We discussed this before and I think there was general
agreement that the default should be "false" on the basis of
generality.
This commit is contained in:
david 2002-07-06 18:02:06 +00:00
parent 0f3db24a90
commit ee8c5d0a3a

View file

@ -62,7 +62,7 @@ public:
virtual const SGPropertyNode * getFactor () const virtual const SGPropertyNode * getFactor () const
{ return _factor ? _factor : &_dummy_1; } { return _factor ? _factor : &_dummy_1; }
virtual const SGPropertyNode * getSquared () const virtual const SGPropertyNode * getSquared () const
{ return _squared ? _squared : &_dummy_1; } { return _squared ? _squared : &_dummy_0; }
virtual const SGPropertyNode * getSetting () const virtual const SGPropertyNode * getSetting () const
{ return _setting ? _setting : &_dummy_0; } { return _setting ? _setting : &_dummy_0; }
virtual const SGPropertyNode * getOffset () const virtual const SGPropertyNode * getOffset () const