AmISelfController.cs 829 B

12345678910111213141516171819202122232425262728
  1. namespace Ryujinx.OsHle.Objects
  2. {
  3. class AmISelfController
  4. {
  5. public static long SetOperationModeChangedNotification(ServiceCtx Context)
  6. {
  7. bool Enable = Context.RequestData.ReadByte() != 0 ? true : false;
  8. return 0;
  9. }
  10. public static long SetPerformanceModeChangedNotification(ServiceCtx Context)
  11. {
  12. bool Enable = Context.RequestData.ReadByte() != 0 ? true : false;
  13. return 0;
  14. }
  15. public static long SetFocusHandlingMode(ServiceCtx Context)
  16. {
  17. bool Flag1 = Context.RequestData.ReadByte() != 0 ? true : false;
  18. bool Flag2 = Context.RequestData.ReadByte() != 0 ? true : false;
  19. bool Flag3 = Context.RequestData.ReadByte() != 0 ? true : false;
  20. return 0;
  21. }
  22. }
  23. }