ControllerSupportArg.cs 300 B

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