Skip to content

Commit

Permalink
- Fixes AH64 DTC Modem Retries presses wrong button
Browse files Browse the repository at this point in the history
  • Loading branch information
FalcoGer committed Jan 12, 2024
1 parent 993cc92 commit 253ecbb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CoordinateConverter/DCS/Aircraft/AH64/AH64RadioPresetData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -358,13 +358,13 @@ public List<DCSCommand> GenerateCommands(AH64DTCData.EPreset preset, bool IsPilo
switch (Retries)
{
case ERetries.Zero:
commands.Add(new DCSCommand(mfd, (int)AH64.EKeyCode.MFD_L3));
commands.Add(new DCSCommand(mfd, (int)AH64.EKeyCode.MFD_L5));
break;
case ERetries.One:
commands.Add(new DCSCommand(mfd, (int)AH64.EKeyCode.MFD_L4));
break;
case ERetries.Two:
commands.Add(new DCSCommand(mfd, (int)AH64.EKeyCode.MFD_L5));
commands.Add(new DCSCommand(mfd, (int)AH64.EKeyCode.MFD_L3));
break;
}
}
Expand Down
2 changes: 1 addition & 1 deletion CoordinateConverter/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace CoordinateConverter
/// <seealso cref="Form" />
public partial class MainForm : Form
{
private readonly GitHub.Version VERSION = new GitHub.Version(0, 6, 4);
private readonly GitHub.Version VERSION = new GitHub.Version(0, 6, 5);

#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
public static readonly Color ERROR_COLOR = Color.Pink;
Expand Down
2 changes: 1 addition & 1 deletion Installer/Installer.wixproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="WixToolset.Sdk/4.0.2">
<PropertyGroup>
<DefineConstants>Version=0.6.4</DefineConstants>
<DefineConstants>Version=0.6.5</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<DefineConstants>Version=0.6.0</DefineConstants>
Expand Down

0 comments on commit 253ecbb

Please sign in to comment.