diff options
| author | David Marcec <dmarcecguzman@gmail.com> | 2019-06-16 20:18:35 +1000 |
|---|---|---|
| committer | David Marcec <dmarcecguzman@gmail.com> | 2019-06-16 20:18:35 +1000 |
| commit | 5fb6781c6104a618ee366c444725e32765a0c534 (patch) | |
| tree | 8df22f0172e08926f9f9057f5f31e357fa56aa58 /src/core/hle/service/acc/acc.h | |
| parent | 335127af6921ce298a6dd63682895768c6b06e86 (diff) | |
Cleanup
Diffstat (limited to 'src/core/hle/service/acc/acc.h')
| -rw-r--r-- | src/core/hle/service/acc/acc.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/acc/acc.h b/src/core/hle/service/acc/acc.h index 6d90af3f1..47a7c46d7 100644 --- a/src/core/hle/service/acc/acc.h +++ b/src/core/hle/service/acc/acc.h @@ -15,7 +15,8 @@ public: class Interface : public ServiceFramework<Interface> { public: explicit Interface(std::shared_ptr<Module> module, - std::shared_ptr<ProfileManager> profile_manager, const char* name); + std::shared_ptr<ProfileManager> profile_manager, Core::System& system, + const char* name); ~Interface() override; void GetUserCount(Kernel::HLERequestContext& ctx); @@ -33,6 +34,7 @@ public: protected: std::shared_ptr<Module> module; std::shared_ptr<ProfileManager> profile_manager; + Core::System& system; }; }; |
