Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(A32NX/EWD): Change fuel flow steps to 20kg/40lb per hour #9591

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,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)

## 0.12.0

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