ControllerSupportArg.cs 362 B

12345678910111213
  1. namespace Ryujinx.HLE.HOS.Applets
  2. {
  3. #pragma warning disable CS0649
  4. // (8.0.0+ version)
  5. unsafe struct ControllerSupportArg
  6. {
  7. public ControllerSupportArgHeader Header;
  8. public fixed uint IdentificationColor[8];
  9. public byte EnableExplainText;
  10. public fixed byte ExplainText[8 * 0x81];
  11. }
  12. #pragma warning restore CS0649
  13. }