Skip to content

Commit

Permalink
fix(mcdu): annunciator light not illuminating (#8222)
Browse files Browse the repository at this point in the history
  • Loading branch information
tracernz authored Sep 20, 2023
1 parent a18fc16 commit a59f745
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
1. [PAYLOAD] Re-enabled FBW sounds when using GSX Integration
1. [SD] Connect SD BLEED page APU bleed pressure indication to correct ADRs - @BlueberryKing (BlueberryKing)
1. [FMS] Use station declination when appropriate for fix info and place/bearing radials - @tracernz (Mike)
1. [MCDU] Fixed the FMGC annunciator light not illuminating - @tracernz (Mike)

## 0.10.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ class A320_Neo_CDU_MainDisplay extends FMCMainDisplay {
for (const [annunc, state] of Object.entries(states)) {
let newState = !!(lightTest && powerOn);

if (annunc === 'fm') {
if (annunc === 'fmgc') {
newState = newState || this.isSubsystemRequesting('FMGC');
} else if (annunc === 'mcdu_menu') {
newState = newState || this.isSubsystemRequesting('AIDS') || this.isSubsystemRequesting('ATSU') || this.isSubsystemRequesting('CFDS');
Expand Down

0 comments on commit a59f745

Please sign in to comment.