mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 15:28:32 +00:00
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
8 lines
178 B
C#
8 lines
178 B
C#
namespace Ryujinx.HLE.HOS.Services.Pcv.Rtc
|
|
{
|
|
[Service("rtc")] // 8.0.0+
|
|
class IRtcManager : IpcService
|
|
{
|
|
public IRtcManager(ServiceCtx context) { }
|
|
}
|
|
} |