mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 10:28:38 +00:00
492bb6ee5f
Also fix typo in a pragma restore in Logger
16 lines
425 B
C#
16 lines
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
|
|
} |