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