aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportResultInfo.cs
blob: 4fcd37db42ed6e66d23aa6e3094457aed3de0f25 (plain)
1
2
3
4
5
6
7
8
9
10
namespace Ryujinx.HLE.HOS.Applets
{
    unsafe struct ControllerSupportResultInfo
    {
        public sbyte PlayerCount;
        fixed byte _padding[3];
        public uint SelectedId;
        public uint Result;
    }
}