summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/time.cpp
diff options
context:
space:
mode:
authorHexagon12 <Hexagon12@users.noreply.github.com>2018-04-17 17:37:43 +0200
committerbunnei <bunneidev@gmail.com>2018-04-17 17:37:43 +0200
commite52a87b98a8aba7df498f4cdb861484ecd0333ca (patch)
treed23babf7fd3e6b40c77a1ba5141ff3cad6357787 /src/core/hle/service/time/time.cpp
parentMerge pull request #342 from bunnei/indexed-verts (diff)
downloadyuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.tar
yuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.tar.gz
yuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.tar.bz2
yuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.tar.lz
yuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.tar.xz
yuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.tar.zst
yuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.zip
Diffstat (limited to 'src/core/hle/service/time/time.cpp')
-rw-r--r--src/core/hle/service/time/time.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/hle/service/time/time.cpp b/src/core/hle/service/time/time.cpp
index c3e46f866..382188a62 100644
--- a/src/core/hle/service/time/time.cpp
+++ b/src/core/hle/service/time/time.cpp
@@ -20,7 +20,11 @@ public:
ISystemClock() : ServiceFramework("ISystemClock") {
static const FunctionInfo functions[] = {
{0, &ISystemClock::GetCurrentTime, "GetCurrentTime"},
- {2, &ISystemClock::GetSystemClockContext, "GetSystemClockContext"}};
+ {1, nullptr, "SetCurrentTime"},
+ {2, &ISystemClock::GetSystemClockContext, "GetSystemClockContext"},
+ {3, nullptr, "SetSystemClockContext"},
+
+ };
RegisterHandlers(functions);
}