From c0e92d35deadb712f9b722e49064954af83695b7 Mon Sep 17 00:00:00 2001
From: Matthew Maring <56924612+hayden2000@users.noreply.github.com>
Date: Sun, 10 May 2020 12:41:25 -0400
Subject: [PATCH 1/2] Update leading zeros on perf appr

---
 Models/Instruments/MCDU/MCDU.nas | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Models/Instruments/MCDU/MCDU.nas b/Models/Instruments/MCDU/MCDU.nas
index c774cfa8..67994c5e 100644
--- a/Models/Instruments/MCDU/MCDU.nas
+++ b/Models/Instruments/MCDU/MCDU.nas
@@ -2623,7 +2623,7 @@ var canvas_MCDU_base = {
 			
 			me["Simple_L3S"].setText("MAG WIND");
 			if (dest_mag.getValue() != -1 and dest_wind.getValue() != -1) {
-				me["Simple_L3"].setText(sprintf("%3.0fg", dest_mag.getValue()) ~ sprintf("/%.0f", dest_wind.getValue()));
+				me["Simple_L3"].setText(sprintf("%03.0fg", dest_mag.getValue()) ~ sprintf("/%.0f", dest_wind.getValue()));
 			} else {
 				me["Simple_L3"].setText("---g/---");;
 			}

From de9d8f70297d148d40923e99f689e8dd08e5f799 Mon Sep 17 00:00:00 2001
From: Dave 'Gizmo' Gymer <gizmo@davegymer.org>
Date: Sun, 10 May 2020 20:03:45 +0100
Subject: [PATCH 2/2] Fix off by one error in arrivals selection.

---
 Nasal/MCDU/ARRIVAL.nas | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Nasal/MCDU/ARRIVAL.nas b/Nasal/MCDU/ARRIVAL.nas
index 7cbea4ba..9fc65480 100644
--- a/Nasal/MCDU/ARRIVAL.nas
+++ b/Nasal/MCDU/ARRIVAL.nas
@@ -330,7 +330,7 @@ var arrivalPage = {
 				}
 				me.R5 = ["CRS" ~ math.round(me._approaches[me.approaches[2 + me.scrollApproach]].heading), nil, "blu"];
 				if (me._approaches[me.approaches[2 + me.scrollApproach]].ils != nil) {
-					me.C6[1] = me._approaches[me.approaches[1 + me.scrollApproach]].ils.id ~ "/" ~ sprintf("%7.2f", me._approaches[me.approaches[1 + me.scrollApproach]].ils_frequency_mhz);
+					me.C6[1] = me._approaches[me.approaches[2 + me.scrollApproach]].ils.id ~ "/" ~ sprintf("%7.2f", me._approaches[me.approaches[2 + me.scrollApproach]].ils_frequency_mhz);
 				}
 				if (me.approaches[2 + me.scrollApproach] != me.selectedApproach) {
 					me.arrowsMatrix[0][4] = 1;