diff options
| author | 2018-07-26 12:03:30 -0700 | |
|---|---|---|
| committer | 2018-07-26 12:03:30 -0700 | |
| commit | 8440b814bcba9a5e6229f88ea211accebf778101 (patch) | |
| tree | bfbbe7c0807f2c7e0d2d2380e28772d151ebebb8 /src/core/hle/service/service.cpp | |
| parent | Merge pull request #832 from lioncash/nim (diff) | |
| parent | service: Add the grc:c service (diff) | |
| download | yuzu-8440b814bcba9a5e6229f88ea211accebf778101.tar.gz yuzu-8440b814bcba9a5e6229f88ea211accebf778101.tar.xz yuzu-8440b814bcba9a5e6229f88ea211accebf778101.zip | |
Merge pull request #834 from lioncash/grc
service: Add the grc:c service
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 e167ea827..8b84fd349 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -27,6 +27,7 @@ | |||
| 27 | #include "core/hle/service/fatal/fatal.h" | 27 | #include "core/hle/service/fatal/fatal.h" |
| 28 | #include "core/hle/service/filesystem/filesystem.h" | 28 | #include "core/hle/service/filesystem/filesystem.h" |
| 29 | #include "core/hle/service/friend/friend.h" | 29 | #include "core/hle/service/friend/friend.h" |
| 30 | #include "core/hle/service/grc/grc.h" | ||
| 30 | #include "core/hle/service/hid/hid.h" | 31 | #include "core/hle/service/hid/hid.h" |
| 31 | #include "core/hle/service/ldn/ldn.h" | 32 | #include "core/hle/service/ldn/ldn.h" |
| 32 | #include "core/hle/service/ldr/ldr.h" | 33 | #include "core/hle/service/ldr/ldr.h" |
| @@ -200,6 +201,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) { | |||
| 200 | Fatal::InstallInterfaces(*sm); | 201 | Fatal::InstallInterfaces(*sm); |
| 201 | FileSystem::InstallInterfaces(*sm); | 202 | FileSystem::InstallInterfaces(*sm); |
| 202 | Friend::InstallInterfaces(*sm); | 203 | Friend::InstallInterfaces(*sm); |
| 204 | GRC::InstallInterfaces(*sm); | ||
| 203 | HID::InstallInterfaces(*sm); | 205 | HID::InstallInterfaces(*sm); |
| 204 | LDN::InstallInterfaces(*sm); | 206 | LDN::InstallInterfaces(*sm); |
| 205 | LDR::InstallInterfaces(*sm); | 207 | LDR::InstallInterfaces(*sm); |