summaryrefslogtreecommitdiff
path: root/src/core/core.h
diff options
context:
space:
mode:
authorGravatar bunnei2020-10-12 18:09:15 -0700
committerGravatar bunnei2020-10-12 18:09:15 -0700
commit62c6c9f6a6dbc44de5fa8e03187fb34037958d5f (patch)
tree4e232d3671fbb761a9c5eaa6e5d84ad12193fec3 /src/core/core.h
parentMerge pull request #4766 from ReinUsesLisp/tmml-cube (diff)
downloadyuzu-62c6c9f6a6dbc44de5fa8e03187fb34037958d5f.tar.gz
yuzu-62c6c9f6a6dbc44de5fa8e03187fb34037958d5f.tar.xz
yuzu-62c6c9f6a6dbc44de5fa8e03187fb34037958d5f.zip
service: time: Update current time with changes to RTC setting.
- This can be used to advance time, e.g. for Pokemon Sword/Shield pokejobs.
Diffstat (limited to 'src/core/core.h')
-rw-r--r--src/core/core.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/core.h b/src/core/core.h
index 27efe30bb..6db896bae 100644
--- a/src/core/core.h
+++ b/src/core/core.h
@@ -69,6 +69,10 @@ namespace SM {
69class ServiceManager; 69class ServiceManager;
70} // namespace SM 70} // namespace SM
71 71
72namespace Time {
73class TimeManager;
74} // namespace Time
75
72} // namespace Service 76} // namespace Service
73 77
74namespace Tegra { 78namespace Tegra {
@@ -361,6 +365,10 @@ public:
361 365
362 const Service::LM::Manager& GetLogManager() const; 366 const Service::LM::Manager& GetLogManager() const;
363 367
368 Service::Time::TimeManager& GetTimeManager();
369
370 const Service::Time::TimeManager& GetTimeManager() const;
371
364 void SetExitLock(bool locked); 372 void SetExitLock(bool locked);
365 373
366 bool GetExitLock() const; 374 bool GetExitLock() const;