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
13 lines
362 B
C#
13 lines
362 B
C#
namespace Ryujinx.HLE.HOS.Applets
|
|
{
|
|
#pragma warning disable CS0649
|
|
// (8.0.0+ version)
|
|
unsafe struct ControllerSupportArg
|
|
{
|
|
public ControllerSupportArgHeader Header;
|
|
public fixed uint IdentificationColor[8];
|
|
public byte EnableExplainText;
|
|
public fixed byte ExplainText[8 * 0x81];
|
|
}
|
|
#pragma warning restore CS0649
|
|
} |