diff --git a/Ryujinx.HLE/HOS/Services/Settings/ISystemSettingsServer.cs b/Ryujinx.HLE/HOS/Services/Settings/ISystemSettingsServer.cs index c41e6618a..06c02e5fa 100644 --- a/Ryujinx.HLE/HOS/Services/Settings/ISystemSettingsServer.cs +++ b/Ryujinx.HLE/HOS/Services/Settings/ISystemSettingsServer.cs @@ -219,7 +219,12 @@ namespace Ryujinx.HLE.HOS.Services.Settings return ResultCode.Success; } - + [Command(60)] + public ResultCode IsUserSystemClockAutomaticCorrectionEnabled(ServiceCtx context) + { + context.ResponseData.Write(true); + return ResultCode.Success; + } public byte[] GetFirmwareData(Switch device) { long titleId = 0x0100000000000809;