diff options
| author | 2020-10-12 18:09:15 -0700 | |
|---|---|---|
| committer | 2020-10-12 18:09:15 -0700 | |
| commit | 62c6c9f6a6dbc44de5fa8e03187fb34037958d5f (patch) | |
| tree | 4e232d3671fbb761a9c5eaa6e5d84ad12193fec3 /src/core/core.h | |
| parent | Merge pull request #4766 from ReinUsesLisp/tmml-cube (diff) | |
| download | yuzu-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.h | 8 |
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 { | |||
| 69 | class ServiceManager; | 69 | class ServiceManager; |
| 70 | } // namespace SM | 70 | } // namespace SM |
| 71 | 71 | ||
| 72 | namespace Time { | ||
| 73 | class TimeManager; | ||
| 74 | } // namespace Time | ||
| 75 | |||
| 72 | } // namespace Service | 76 | } // namespace Service |
| 73 | 77 | ||
| 74 | namespace Tegra { | 78 | namespace 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; |