From 2c6e4ce0ad367f63d2203b6a21e1cf244f344efb Mon Sep 17 00:00:00 2001 From: David Marcec Date: Sat, 21 Sep 2019 19:35:01 +1000 Subject: Deglobalize System: Time --- src/core/hle/service/time/time.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/core/hle/service/time/time.h') diff --git a/src/core/hle/service/time/time.h b/src/core/hle/service/time/time.h index e0708f856..c32d32860 100644 --- a/src/core/hle/service/time/time.h +++ b/src/core/hle/service/time/time.h @@ -80,7 +80,8 @@ public: class Interface : public ServiceFramework { public: explicit Interface(std::shared_ptr time, - std::shared_ptr shared_memory, const char* name); + std::shared_ptr shared_memory, Core::System& system, + const char* name); ~Interface() override; void GetStandardUserSystemClock(Kernel::HLERequestContext& ctx); @@ -97,6 +98,7 @@ public: protected: std::shared_ptr time; std::shared_ptr shared_memory; + Core::System& system; }; }; -- cgit v1.2.3