diff options
| author | 2018-07-31 09:23:17 -0700 | |
|---|---|---|
| committer | 2018-07-31 09:23:17 -0700 | |
| commit | fd020ad52ae3dc511527b0f26aab198484dac2dc (patch) | |
| tree | 5f54d9c8cec615080d762d239bf2756eeffa74f1 /src/core/hle/service/service.cpp | |
| parent | Merge pull request #874 from lioncash/am (diff) | |
| parent | service: Add fgm services (diff) | |
| download | yuzu-fd020ad52ae3dc511527b0f26aab198484dac2dc.tar.gz yuzu-fd020ad52ae3dc511527b0f26aab198484dac2dc.tar.xz yuzu-fd020ad52ae3dc511527b0f26aab198484dac2dc.zip | |
Merge pull request #875 from lioncash/fgm
service: Add fgm services
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 bbaf7f601..fccc4c461 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -27,6 +27,7 @@ | |||
| 27 | #include "core/hle/service/es/es.h" | 27 | #include "core/hle/service/es/es.h" |
| 28 | #include "core/hle/service/eupld/eupld.h" | 28 | #include "core/hle/service/eupld/eupld.h" |
| 29 | #include "core/hle/service/fatal/fatal.h" | 29 | #include "core/hle/service/fatal/fatal.h" |
| 30 | #include "core/hle/service/fgm/fgm.h" | ||
| 30 | #include "core/hle/service/filesystem/filesystem.h" | 31 | #include "core/hle/service/filesystem/filesystem.h" |
| 31 | #include "core/hle/service/friend/friend.h" | 32 | #include "core/hle/service/friend/friend.h" |
| 32 | #include "core/hle/service/grc/grc.h" | 33 | #include "core/hle/service/grc/grc.h" |
| @@ -209,6 +210,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) { | |||
| 209 | ES::InstallInterfaces(*sm); | 210 | ES::InstallInterfaces(*sm); |
| 210 | EUPLD::InstallInterfaces(*sm); | 211 | EUPLD::InstallInterfaces(*sm); |
| 211 | Fatal::InstallInterfaces(*sm); | 212 | Fatal::InstallInterfaces(*sm); |
| 213 | FGM::InstallInterfaces(*sm); | ||
| 212 | FileSystem::InstallInterfaces(*sm); | 214 | FileSystem::InstallInterfaces(*sm); |
| 213 | Friend::InstallInterfaces(*sm); | 215 | Friend::InstallInterfaces(*sm); |
| 214 | GRC::InstallInterfaces(*sm); | 216 | GRC::InstallInterfaces(*sm); |