ApmISession.cs 311 B

12345678910111213
  1. namespace Ryujinx.OsHle.Objects
  2. {
  3. class ApmISession
  4. {
  5. public static long SetPerformanceConfiguration(ServiceCtx Context)
  6. {
  7. int PerfMode = Context.RequestData.ReadInt32();
  8. int PerfConfig = Context.RequestData.ReadInt32();
  9. return 0;
  10. }
  11. }
  12. }