diff options
| author | bunnei <bunneidev@gmail.com> | 2020-01-03 22:34:57 -0500 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2020-01-04 13:48:30 -0500 |
| commit | a4e840181c1e704a49e37c802ff36344ac18ca10 (patch) | |
| tree | 48e00448d328e3caa9cf428ce960923dccbb62b1 /src/core/hle/service/time/interface.cpp | |
| parent | fab2607c6bae25f50912b32e1cbbfb5a6191916c (diff) | |
service: time: Implement GetClockSnapshotFromSystemClockContext.
Diffstat (limited to 'src/core/hle/service/time/interface.cpp')
| -rw-r--r-- | src/core/hle/service/time/interface.cpp | 2 |
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 0bc90b183..6423a6c37 100644 --- a/src/core/hle/service/time/interface.cpp +++ b/src/core/hle/service/time/interface.cpp @@ -28,7 +28,7 @@ Time::Time(std::shared_ptr<Module> module, Core::System& system, const char* nam {201, nullptr, "GetStandardUserSystemClockAutomaticCorrectionUpdatedTime"}, {300, &Time::CalculateMonotonicSystemClockBaseTimePoint, "CalculateMonotonicSystemClockBaseTimePoint"}, {400, &Time::GetClockSnapshot, "GetClockSnapshot"}, - {401, nullptr, "GetClockSnapshotFromSystemClockContext"}, + {401, &Time::GetClockSnapshotFromSystemClockContext, "GetClockSnapshotFromSystemClockContext"}, {500, nullptr, "CalculateStandardUserSystemClockDifferenceByUser"}, {501, nullptr, "CalculateSpanBetween"}, }; |
