A3XX: FMGC bugfix

This commit is contained in:
Joshua Davidson 2017-11-30 15:12:04 -05:00
parent d991925b32
commit b7cf8f11d6
2 changed files with 2 additions and 2 deletions

View file

@ -247,7 +247,7 @@ var locupdate = maketimer(0.5, func {
var newlat = getprop("/modes/pfd/fma/roll-mode");
var nav_defl = getprop("/instrumentation/nav[0]/heading-needle-deflection-norm");
if (lat == "LOC") {
if (nav_defl > -0.15 and nav_defl < 0.15) {
if (nav_defl > -0.06 and nav_defl < 0.06) {
locupdate.stop();
if (newlat != "LOC") {
setprop("/modes/pfd/fma/roll-mode", "LOC");

View file

@ -1 +1 @@
4046
4047