Ryujinx/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgPrivate.cs
mageven 492bb6ee5f
Suppress CS0169 CS0649 warns from HID structs (#1222)
Also fix typo in a pragma restore in Logger
2020-05-10 16:02:41 +02:00

16 lines
No EOL
425 B
C#

namespace Ryujinx.HLE.HOS.Applets
{
#pragma warning disable CS0649
struct ControllerSupportArgPrivate
{
public uint PrivateSize;
public uint ArgSize;
public byte Flag0;
public byte Flag1;
public ControllerSupportMode Mode;
public byte ControllerSupportCaller;
public uint NpadStyleSet;
public uint NpadJoyHoldType;
}
#pragma warning restore CS0649
}