mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-19 07:47:53 +00:00
Deglobalize System: Time
This commit is contained in:
parent
2936be3ae1
commit
7675b98419
4 changed files with 21 additions and 14 deletions
|
@ -80,7 +80,8 @@ public:
|
|||
class Interface : public ServiceFramework<Interface> {
|
||||
public:
|
||||
explicit Interface(std::shared_ptr<Module> time,
|
||||
std::shared_ptr<SharedMemory> shared_memory, const char* name);
|
||||
std::shared_ptr<SharedMemory> shared_memory, Core::System& system,
|
||||
const char* name);
|
||||
~Interface() override;
|
||||
|
||||
void GetStandardUserSystemClock(Kernel::HLERequestContext& ctx);
|
||||
|
@ -97,6 +98,7 @@ public:
|
|||
protected:
|
||||
std::shared_ptr<Module> time;
|
||||
std::shared_ptr<SharedMemory> shared_memory;
|
||||
Core::System& system;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue