Version:
SDK 1.1.2 MSFS2024 V1.2.8
Frequency: *
Consistently
Severity:
Blocker
Bug description:
Using fsPlannedRouteGetEfbRoute() consistently returns an Approach struct without Suffix item populated when one is selected in EFB
e.g.
exported PLN detail:
-
<ApproachDetails> <ApproachTypeFP>ILS</ApproachTypeFP> <RunwayNumberFP>8</RunwayNumberFP> <SuffixFP>Y</SuffixFP> </ApproachDetails>
Data retrieved Approach from FsPlannedRoute:
struct FsApproachIdentifier
{
FsApproachProcedureType type; → 4, (ILS)
FsRunwayIdentifier runway; → 8,0 (Rw 08)
char suffix[2]; → empty ‘\0’ missing suffix Y
};
Repro steps:
Setup a Flightplan in EFB with an Approach with Suffix
e.g. CYYR Approach ILS 08 Y
Perform in Standalone WASM module
FsPlannedRoute* plannedRoute = fsPlannedRouteGetEfbRoute();
and review returned content.
Attachments:
N/A, but can be provided upon request