Skip to content

Commit

Permalink
Fixes display label id change, fixes #20
Browse files Browse the repository at this point in the history
  • Loading branch information
FalcoGer committed Oct 8, 2024
1 parent 0af783e commit 07a3d39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CoordinateConverter/DCS/Aircraft/AH64/AH64TSDOptionData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -985,7 +985,7 @@ static public AH64TSDOptionData ReadFromAC(bool isPilot)
switch (kvp.Key)
{
case EScreens.TSD_MAP:
result.Phase = displayData["PB17_31"] == "NAV" ? EPhase.Navigation : EPhase.Attack;
result.Phase = displayData["PB17_39"] == "NAV" ? EPhase.Navigation : EPhase.Attack;
result.MapType = displayData["PB23_15"] == "DIG" ? EMapType.Digital
: displayData["PB23_15"] == "CHART" ? EMapType.Chart
: displayData["PB23_15"] == "SAT" ? EMapType.Satellite
Expand Down

0 comments on commit 07a3d39

Please sign in to comment.