1
0
Fork 0

Add a property which specifies if the current nav station has a glideslope.

This commit is contained in:
curt 2003-03-29 03:19:03 +00:00
parent 49cace7a21
commit fcf6021f76

View file

@ -192,6 +192,9 @@ FGNavCom::bind ()
sprintf( propname, "/radios/nav[%d]/heading-needle-deflection", index );
fgTie( propname, this, &FGNavCom::get_nav_heading_needle_deflection );
sprintf( propname, "/radios/nav[%d]/has-gs", index );
fgTie( propname, this, &FGNavCom::get_nav_has_gs );
sprintf( propname, "/radios/nav[%d]/gs-needle-deflection", index );
fgTie( propname, this, &FGNavCom::get_nav_gs_needle_deflection );