From b28af1f6c9d66cdbfbd0982f3de5aabac94cf660 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 26 Jul 2018 09:25:54 -0400 Subject: service: Add the grc:c service Adds the basic skeleton for the grc:c service based off the information provided by Switch Brew. --- src/core/hle/service/service.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/core/hle/service/service.cpp') diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 482989ea7..10c6757e5 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -27,6 +27,7 @@ #include "core/hle/service/fatal/fatal.h" #include "core/hle/service/filesystem/filesystem.h" #include "core/hle/service/friend/friend.h" +#include "core/hle/service/grc/grc.h" #include "core/hle/service/hid/hid.h" #include "core/hle/service/ldr/ldr.h" #include "core/hle/service/lm/lm.h" @@ -198,6 +199,7 @@ void Init(std::shared_ptr& sm) { Fatal::InstallInterfaces(*sm); FileSystem::InstallInterfaces(*sm); Friend::InstallInterfaces(*sm); + GRC::InstallInterfaces(*sm); HID::InstallInterfaces(*sm); LDR::InstallInterfaces(*sm); LM::InstallInterfaces(*sm); -- cgit v1.2.3