From 7da8e3f812f59b96dd083040f0bc10dd71cc142a Mon Sep 17 00:00:00 2001 From: David Marcec Date: Sat, 21 Sep 2019 18:42:28 +1000 Subject: Deglobalize System: Aoc --- src/core/hle/service/aoc/aoc_u.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/core/hle/service/aoc/aoc_u.h') diff --git a/src/core/hle/service/aoc/aoc_u.h b/src/core/hle/service/aoc/aoc_u.h index 5effea730..e20f90a76 100644 --- a/src/core/hle/service/aoc/aoc_u.h +++ b/src/core/hle/service/aoc/aoc_u.h @@ -14,7 +14,7 @@ namespace Service::AOC { class AOC_U final : public ServiceFramework { public: - AOC_U(); + AOC_U(Core::System& system); ~AOC_U() override; private: @@ -26,9 +26,10 @@ private: std::vector add_on_content; Kernel::EventPair aoc_change_event; + Core::System& system; }; /// Registers all AOC services with the specified service manager. -void InstallInterfaces(SM::ServiceManager& service_manager); +void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system); } // namespace Service::AOC -- cgit v1.2.3