33dc4c9ce4
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
12 lines
No EOL
213 B
C#
12 lines
No EOL
213 B
C#
namespace Ryujinx.HLE.HOS.Services.Pcv
|
|
{
|
|
enum ResultCode
|
|
{
|
|
ModuleId = 30,
|
|
ErrorCodeShift = 9,
|
|
|
|
Success = 0,
|
|
|
|
InvalidArgument = (5 << ErrorCodeShift) | ModuleId
|
|
}
|
|
} |