aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/friend/interface.cpp
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2019-09-21 18:43:16 +1000
committerDavid Marcec <dmarcecguzman@gmail.com>2019-09-22 16:30:27 +1000
commita9e9570d8424966e16ce8f683b21737c1188c134 (patch)
tree338c9d02895a5a8bb21ff6a7dde4702a74b324d1 /src/core/hle/service/friend/interface.cpp
parenta40e5b2def2502f3bc8c159959b4ac1e262b4188 (diff)
Deglobalize System: Friend
Diffstat (limited to 'src/core/hle/service/friend/interface.cpp')
-rw-r--r--src/core/hle/service/friend/interface.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/friend/interface.cpp b/src/core/hle/service/friend/interface.cpp
index 5b384f733..58155f652 100644
--- a/src/core/hle/service/friend/interface.cpp
+++ b/src/core/hle/service/friend/interface.cpp
@@ -6,8 +6,8 @@
namespace Service::Friend {
-Friend::Friend(std::shared_ptr<Module> module, const char* name)
- : Interface(std::move(module), name) {
+Friend::Friend(std::shared_ptr<Module> module, Core::System& system, const char* name)
+ : Interface(std::move(module), system, name) {
static const FunctionInfo functions[] = {
{0, &Friend::CreateFriendService, "CreateFriendService"},
{1, &Friend::CreateNotificationService, "CreateNotificationService"},