1
0
Fork 0

Merge branch 'dev' into 3D

This commit is contained in:
Jonathan Redpath 2022-01-19 16:49:19 +00:00
commit f11320922a

View file

@ -5,11 +5,7 @@ var OOOIReport = {
new: func(state,time=0,fob="") {
var report = {parents:[OOOIReport]};
report.state = state;
if (acconfig_weight_kgs.getValue() == 1) {
report.fob = (fob != "") ? fob : fmgc.FMGCInternal.fob * LBS2KGS;
} else {
report.fob = (fob != "") ? fob : fmgc.FMGCInternal.fob;
}
report.fob = (fob != "") ? fob : fmgc.FMGCInternal.fob;
if (time != 0) {
report.time = formatSecToHHMM(time);
report.elapsed = time;