diff --git a/Ryujinx.HLE/HOS/Services/Settings/ISystemSettingsServer.cs b/Ryujinx.HLE/HOS/Services/Settings/ISystemSettingsServer.cs index c41e6618a8..d19a534548 100644 --- a/Ryujinx.HLE/HOS/Services/Settings/ISystemSettingsServer.cs +++ b/Ryujinx.HLE/HOS/Services/Settings/ISystemSettingsServer.cs @@ -220,6 +220,18 @@ namespace Ryujinx.HLE.HOS.Services.Settings return ResultCode.Success; } + [Command(60)] + // IsUserSystemClockAutomaticCorrectionEnabled() -> bool + public ResultCode IsUserSystemClockAutomaticCorrectionEnabled(ServiceCtx context) + { + // NOTE: When set to true, is automatically synced with the internet. + context.ResponseData.Write(true); + + Logger.Stub?.PrintStub(LogClass.ServiceSet, "Stubbed"); + + return ResultCode.Success; + } + public byte[] GetFirmwareData(Switch device) { long titleId = 0x0100000000000809; @@ -267,4 +279,4 @@ namespace Ryujinx.HLE.HOS.Services.Settings } } } -} \ No newline at end of file +}