1
0
Fork 0
A320-family/Nasal/MCDU/STATUS.nas
2020-05-19 00:09:09 +01:00

16 lines
414 B
Text

# A3XX mCDU by Joshua Davidson (Octal450), Jonathan Redpath, and Matthew Maring (mattmaring)
# Copyright (c) 2020 Josh Davidson (Octal450)
var statusInput = func(key, i) {
if (key == "L3") {
fmgc.switchDatabase();
} elsif (key == "R5") {
if (fmgc.WaypointDatabase.confirm) {
fmgc.WaypointDatabase.delete();
fmgc.WaypointDatabase.confirm = 0;
} else {
fmgc.WaypointDatabase.confirm = 1;
}
}
}