diff options
| author | David Marcec <dmarcecguzman@gmail.com> | 2018-11-10 01:25:56 +1100 |
|---|---|---|
| committer | David Marcec <dmarcecguzman@gmail.com> | 2018-11-10 01:25:56 +1100 |
| commit | 4f78f5c0df0a106cab891c7f7229563e7f5a69e1 (patch) | |
| tree | 05f14c6081b79af507e18589935641438efe1406 /src/core/hle/service/time/interface.cpp | |
| parent | 29f082775b400c56d7afe45b84ad8821e255f127 (diff) | |
Implement GetClockSnapshot
Needed by megaman 11
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 18a5d71d5..e3cbd7004 100644 --- a/src/core/hle/service/time/interface.cpp +++ b/src/core/hle/service/time/interface.cpp @@ -21,7 +21,7 @@ Time::Time(std::shared_ptr<Module> time, const char* name) {102, nullptr, "GetStandardUserSystemClockInitialYear"}, {200, nullptr, "IsStandardNetworkSystemClockAccuracySufficient"}, {300, nullptr, "CalculateMonotonicSystemClockBaseTimePoint"}, - {400, nullptr, "GetClockSnapshot"}, + {400, &Time::GetClockSnapshot, "GetClockSnapshot"}, {401, nullptr, "GetClockSnapshotFromSystemClockContext"}, {500, nullptr, "CalculateStandardUserSystemClockDifferenceByUser"}, {501, nullptr, "CalculateSpanBetween"}, |
