Fix most remaining warnings in satellite .NET projects
This commit is contained in:
parent
e46267494d
commit
431b4f67e8
|
@ -244,8 +244,10 @@ namespace Jellyfish.Virtu
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#pragma warning disable CA2211 // public field
|
||||||
public static bool WhiteAppleDown;
|
public static bool WhiteAppleDown;
|
||||||
public static bool BlackAppleDown;
|
public static bool BlackAppleDown;
|
||||||
|
#pragma warning restore CA2211
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Call this at 60hz with all of the currently pressed keys
|
/// Call this at 60hz with all of the currently pressed keys
|
||||||
|
|
|
@ -435,10 +435,7 @@ namespace PcxFileTypePlugin.Quantize
|
||||||
// Loop through children looking for leaves
|
// Loop through children looking for leaves
|
||||||
for (int index = 0; index < 8; index++)
|
for (int index = 0; index < 8; index++)
|
||||||
{
|
{
|
||||||
if (null != _children[index])
|
_children[index]?.ConstructPalette(palette, ref paletteIndex);
|
||||||
{
|
|
||||||
_children[index].ConstructPalette(palette, ref paletteIndex);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue