mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 03:06:38 +00:00
11 lines
300 B
C#
11 lines
300 B
C#
|
namespace Ryujinx.HLE.HOS.Applets
|
||
|
{
|
||
|
// (8.0.0+ version)
|
||
|
unsafe struct ControllerSupportArg
|
||
|
{
|
||
|
public ControllerSupportArgHeader Header;
|
||
|
public fixed uint IdentificationColor[8];
|
||
|
public byte EnableExplainText;
|
||
|
public fixed byte ExplainText[8 * 0x81];
|
||
|
}
|
||
|
}
|