summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/time/time.cpp
diff options
context:
space:
mode:
authorshinyquagsire23 <mtinc2@gmail.com>2018-02-22 02:43:05 +0100
committershinyquagsire23 <mtinc2@gmail.com>2018-02-22 02:43:05 +0100
commit944132dbe5beb5db171cadec9d21537a59f58df9 (patch)
tree7d494a3b2fed5960a8b76431e07024fa2bc83847 /src/core/hle/service/time/time.cpp
parentMerge pull request #206 from mailwl/aoc-listaddoncontent (diff)
downloadyuzu-944132dbe5beb5db171cadec9d21537a59f58df9.tar
yuzu-944132dbe5beb5db171cadec9d21537a59f58df9.tar.gz
yuzu-944132dbe5beb5db171cadec9d21537a59f58df9.tar.bz2
yuzu-944132dbe5beb5db171cadec9d21537a59f58df9.tar.lz
yuzu-944132dbe5beb5db171cadec9d21537a59f58df9.tar.xz
yuzu-944132dbe5beb5db171cadec9d21537a59f58df9.tar.zst
yuzu-944132dbe5beb5db171cadec9d21537a59f58df9.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/time/time.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/hle/service/time/time.cpp b/src/core/hle/service/time/time.cpp
index 364ddcea2..ad49f4265 100644
--- a/src/core/hle/service/time/time.cpp
+++ b/src/core/hle/service/time/time.cpp
@@ -146,6 +146,13 @@ void Module::Interface::GetTimeZoneService(Kernel::HLERequestContext& ctx) {
LOG_DEBUG(Service_Time, "called");
}
+void Module::Interface::GetStandardLocalSystemClock(Kernel::HLERequestContext& ctx) {
+ IPC::ResponseBuilder rb{ctx, 2, 0, 1};
+ rb.Push(RESULT_SUCCESS);
+ rb.PushIpcInterface<ISystemClock>();
+ LOG_DEBUG(Service_Time, "called");
+}
+
Module::Interface::Interface(std::shared_ptr<Module> time, const char* name)
: ServiceFramework(name), time(std::move(time)) {}