summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/interface.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-12-23 00:10:59 +0100
committerbunnei <bunneidev@gmail.com>2020-01-04 19:48:30 +0100
commitfab2607c6bae25f50912b32e1cbbfb5a6191916c (patch)
treebdcff3de0871a546f8e1399a6b1ba2869a569d04 /src/core/hle/service/time/interface.cpp
parentsystem_archive: Add a basic HLE implementation for time zone binary. (diff)
downloadyuzu-fab2607c6bae25f50912b32e1cbbfb5a6191916c.tar
yuzu-fab2607c6bae25f50912b32e1cbbfb5a6191916c.tar.gz
yuzu-fab2607c6bae25f50912b32e1cbbfb5a6191916c.tar.bz2
yuzu-fab2607c6bae25f50912b32e1cbbfb5a6191916c.tar.lz
yuzu-fab2607c6bae25f50912b32e1cbbfb5a6191916c.tar.xz
yuzu-fab2607c6bae25f50912b32e1cbbfb5a6191916c.tar.zst
yuzu-fab2607c6bae25f50912b32e1cbbfb5a6191916c.zip
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"},