diff --git a/ExternalCoreProjects/Virtu/Keyboard.cs b/ExternalCoreProjects/Virtu/Keyboard.cs index 65c5153740..c57ab44a90 100644 --- a/ExternalCoreProjects/Virtu/Keyboard.cs +++ b/ExternalCoreProjects/Virtu/Keyboard.cs @@ -244,8 +244,10 @@ namespace Jellyfish.Virtu return ret; } +#pragma warning disable CA2211 // public field public static bool WhiteAppleDown; public static bool BlackAppleDown; +#pragma warning restore CA2211 /// /// Call this at 60hz with all of the currently pressed keys diff --git a/ExternalProjects/PcxFileTypePlugin.HawkQuantizer/OctreeQuantizer.cs b/ExternalProjects/PcxFileTypePlugin.HawkQuantizer/OctreeQuantizer.cs index 5b597c35f2..38fd81b001 100644 --- a/ExternalProjects/PcxFileTypePlugin.HawkQuantizer/OctreeQuantizer.cs +++ b/ExternalProjects/PcxFileTypePlugin.HawkQuantizer/OctreeQuantizer.cs @@ -435,10 +435,7 @@ namespace PcxFileTypePlugin.Quantize // Loop through children looking for leaves for (int index = 0; index < 8; index++) { - if (null != _children[index]) - { - _children[index].ConstructPalette(palette, ref paletteIndex); - } + _children[index]?.ConstructPalette(palette, ref paletteIndex); } } } diff --git a/References/PcxFileTypePlugin.HawkQuantizer.dll b/References/PcxFileTypePlugin.HawkQuantizer.dll index 0163d96caf..1fef2d3f24 100644 Binary files a/References/PcxFileTypePlugin.HawkQuantizer.dll and b/References/PcxFileTypePlugin.HawkQuantizer.dll differ diff --git a/References/Virtu.dll b/References/Virtu.dll index effa151391..d99870a539 100644 Binary files a/References/Virtu.dll and b/References/Virtu.dll differ