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