Skip to content

Commit

Permalink
Fix display IDs broken by DCS patch
Browse files Browse the repository at this point in the history
  • Loading branch information
FalcoGer committed Jul 13, 2024
1 parent b75c315 commit e6093a4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions CoordinateConverter/DCS/Aircraft/AH64/AH64.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,15 +107,15 @@ public enum EDeviceCode
public enum EDisplayCodes
{
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
PLT_EUFD = 17,
PLT_HMD = 21,
PLT_MFD_Left = 6,
PLT_MFD_Right = 8,
PLT_CMWS = 24,
CPG_MFD_Left = 10,
CPG_MFD_Right = 12,
CPG_EUFD = 18,
TEDAC = 19,
PLT_EUFD = 18,
PLT_HMD = 22,
PLT_MFD_Left = 7,
PLT_MFD_Right = 9,
PLT_CMWS = 25,
CPG_MFD_Left = 11,
CPG_MFD_Right = 13,
CPG_EUFD = 19,
TEDAC = 20,
#pragma warning restore CS1591 // Missing XML comment for publicly visible type or member

}
Expand Down
2 changes: 1 addition & 1 deletion CoordinateConverter/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ namespace CoordinateConverter
/// <seealso cref="Form" />
public partial class MainForm : Form
{
private readonly GitHub.Version VERSION = new GitHub.Version(0, 10, 1);
private readonly GitHub.Version VERSION = new GitHub.Version(0, 10, 2);

#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
public static readonly Color ERROR_COLOR = Color.Pink;
Expand Down
4 changes: 2 additions & 2 deletions Installer/Installer.wixproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<Project Sdk="WixToolset.Sdk/5.0.0">
<PropertyGroup>
<DefineConstants>Version=0.10.1</DefineConstants>
<DefineConstants>Version=0.10.2</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<DefineConstants>Version=0.10.1</DefineConstants>
<DefineConstants>Version=0.10.2</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="WixToolset.Netfx.wixext" Version="5.0.0" />
Expand Down

0 comments on commit e6093a4

Please sign in to comment.