Skip to content

Commit

Permalink
fix(A32NX/EWD): Change fuel flow steps to 20kg/40lb per hour (#9591)
Browse files Browse the repository at this point in the history
fix(ewd): change fuel flow steps to 20kg/40lb per hour
  • Loading branch information
BravoMike99 authored Dec 5, 2024
1 parent 2927b71 commit cacb841
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 @@ -80,6 +80,7 @@
1. [FMS] Fixed issue with airport loading timing out on MSFS2024 - @tracernz (Mike)
1. [A32NX] Fixed APU fire detection - @tracernz (Mike)
1. [A380X/COND] Fix wasm crash during rapid decompression - @mjuhe (Miquel Juhe)
1. [A32NX/EWD] Corrected fuel flow step to 20kg/40lbs per hour - @BravoMike99 (bruno_pt99)
1. [A380X] Fix EWD avail. thrust fill area & PFD rudder trim visibility on ground - @flogross89 (floridude)
1. [A380X/LIGHTS] Fix function of FCU brightness knobs - @heclak (Heclak)
1. [A380X/FWS] Fix "NO ZFW OR ZFWCG DATA" ECAM alert after landing - @flogross89 (floridude)
Expand Down
2 changes: 1 addition & 1 deletion fbw-a32nx/src/systems/instruments/src/EWD/FF.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class FF extends DisplayComponent<FFProps> {
.atFrequency(1)
.handle((ff) => {
const metric = this.props.metric.get();
this.ff.set(fuelForDisplay(ff, metric ? '1' : '0'));
this.ff.set(fuelForDisplay(ff, metric ? '1' : '0', 1, 2));
});
}

Expand Down

0 comments on commit cacb841

Please sign in to comment.