diff options
| author | Ac_K <Acoustik666@gmail.com> | 2021-09-29 01:03:35 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-29 01:03:35 +0200 |
| commit | 33dc4c9ce40165795da884eaa684f16e8b643799 (patch) | |
| tree | 89002b23ce9085ce6cb05de890a67c0acd19b9fa /Ryujinx.HLE/HOS/Services/Pcv/ResultCode.cs | |
| parent | f4f496cb48a59aae36e3252baa90396e1bfadd2e (diff) | |
clkrst: Stub/Implement IClkrstManager and IClkrstSession calls (#2692)
This PR stubs and implements some clkrst call because they are used to overclock the Switch hardware and it's pointless in our case as we emulate the system.
Everything was done checked by RE.
Fixes #2686
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Pcv/ResultCode.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Pcv/ResultCode.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Pcv/ResultCode.cs b/Ryujinx.HLE/HOS/Services/Pcv/ResultCode.cs new file mode 100644 index 00000000..2041e423 --- /dev/null +++ b/Ryujinx.HLE/HOS/Services/Pcv/ResultCode.cs @@ -0,0 +1,12 @@ +namespace Ryujinx.HLE.HOS.Services.Pcv +{ + enum ResultCode + { + ModuleId = 30, + ErrorCodeShift = 9, + + Success = 0, + + InvalidArgument = (5 << ErrorCodeShift) | ModuleId + } +}
\ No newline at end of file |
