aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Ryujinx.HLE/HOS/Services/Settings/ISystemSettingsServer.cs14
1 files changed, 13 insertions, 1 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Settings/ISystemSettingsServer.cs b/Ryujinx.HLE/HOS/Services/Settings/ISystemSettingsServer.cs
index c41e6618..d19a5345 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
+}