aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArg.cs
blob: 62ebff3000e1b7ec9e47edb8be13585695b13197 (plain)
1
2
3
4
5
6
7
8
9
10
11
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];
    }
}