diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgVPre7.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgVPre7.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgVPre7.cs b/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgVPre7.cs new file mode 100644 index 00000000..6d46aea5 --- /dev/null +++ b/Ryujinx.HLE/HOS/Applets/Controller/ControllerSupportArgVPre7.cs @@ -0,0 +1,16 @@ +using System.Runtime.InteropServices; + +namespace Ryujinx.HLE.HOS.Applets +{ +#pragma warning disable CS0649 + // (1.0.0+ version) + [StructLayout(LayoutKind.Sequential, Pack=1)] + unsafe struct ControllerSupportArgVPre7 + { + public ControllerSupportArgHeader Header; + public fixed uint IdentificationColor[4]; + public byte EnableExplainText; + public fixed byte ExplainText[4 * 0x81]; + } +#pragma warning restore CS0649 +}
\ No newline at end of file |
