diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-07-31 07:20:42 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-07-31 08:01:19 -0400 |
| commit | 268eeeb4065559ace6d4671a364210336006cd21 (patch) | |
| tree | 686ddce37955e95b599d351fccb631b1aff8ada4 /src/core/hle/service/service.cpp | |
| parent | bf9c62bc76a2296c1a81cfc1b83aaf4028578901 (diff) | |
service: Add fgm services
Adds the basic skeleton for the fgm services based off the information
provided by Switch Brew.
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 3cad64837..d6ebfaac5 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -27,6 +27,7 @@ #include "core/hle/service/es/es.h" #include "core/hle/service/eupld/eupld.h" #include "core/hle/service/fatal/fatal.h" +#include "core/hle/service/fgm/fgm.h" #include "core/hle/service/filesystem/filesystem.h" #include "core/hle/service/friend/friend.h" #include "core/hle/service/grc/grc.h" @@ -208,6 +209,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) { ES::InstallInterfaces(*sm); EUPLD::InstallInterfaces(*sm); Fatal::InstallInterfaces(*sm); + FGM::InstallInterfaces(*sm); FileSystem::InstallInterfaces(*sm); Friend::InstallInterfaces(*sm); GRC::InstallInterfaces(*sm); |
