AccIProfile.cs 487 B

123456789101112131415161718
  1. namespace Ryujinx.OsHle.Objects
  2. {
  3. class AccIProfile
  4. {
  5. public static long GetBase(ServiceCtx Context)
  6. {
  7. Context.ResponseData.Write(0L);
  8. Context.ResponseData.Write(0L);
  9. Context.ResponseData.Write(0L);
  10. Context.ResponseData.Write(0L);
  11. Context.ResponseData.Write(0L);
  12. Context.ResponseData.Write(0L);
  13. Context.ResponseData.Write(0L);
  14. return 0;
  15. }
  16. }
  17. }