Suppress CS0169 CS0649 warns from HID structs (#1222)

Also fix typo in a pragma restore in Logger
This commit is contained in:
mageven
2020-05-10 19:32:41 +05:30
committed by GitHub
parent be98a7a649
commit 492bb6ee5f
6 changed files with 11 additions and 1 deletions

View File

@ -1,5 +1,6 @@
namespace Ryujinx.HLE.HOS.Applets
{
#pragma warning disable CS0649
struct ControllerSupportArgPrivate
{
public uint PrivateSize;
@ -11,4 +12,5 @@ namespace Ryujinx.HLE.HOS.Applets
public uint NpadStyleSet;
public uint NpadJoyHoldType;
}
#pragma warning restore CS0649
}