aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/time/interface.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-12-22 18:10:59 -0500
committerbunnei <bunneidev@gmail.com>2020-01-04 13:48:30 -0500
commitfab2607c6bae25f50912b32e1cbbfb5a6191916c (patch)
treebdcff3de0871a546f8e1399a6b1ba2869a569d04 /src/core/hle/service/time/interface.cpp
parent4414640285b0f87bc5efed46127dcc80632e7892 (diff)
service: time: Implement IsStandardNetworkSystemClockAccuracySufficient.
Diffstat (limited to 'src/core/hle/service/time/interface.cpp')
-rw-r--r--src/core/hle/service/time/interface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/time/interface.cpp b/src/core/hle/service/time/interface.cpp
index b1307a434..0bc90b183 100644
--- a/src/core/hle/service/time/interface.cpp
+++ b/src/core/hle/service/time/interface.cpp
@@ -24,7 +24,7 @@ Time::Time(std::shared_ptr<Module> module, Core::System& system, const char* nam
{100, nullptr, "IsStandardUserSystemClockAutomaticCorrectionEnabled"},
{101, nullptr, "SetStandardUserSystemClockAutomaticCorrectionEnabled"},
{102, nullptr, "GetStandardUserSystemClockInitialYear"},
- {200, nullptr, "IsStandardNetworkSystemClockAccuracySufficient"},
+ {200, &Time::IsStandardNetworkSystemClockAccuracySufficient, "IsStandardNetworkSystemClockAccuracySufficient"},
{201, nullptr, "GetStandardUserSystemClockAutomaticCorrectionUpdatedTime"},
{300, &Time::CalculateMonotonicSystemClockBaseTimePoint, "CalculateMonotonicSystemClockBaseTimePoint"},
{400, &Time::GetClockSnapshot, "GetClockSnapshot"},