diff options
| author | 2018-08-07 11:27:49 -0400 | |
|---|---|---|
| committer | 2018-08-07 11:27:49 -0400 | |
| commit | c392650e21dfcfd8663c44d4168ea3e527e19d5e (patch) | |
| tree | ec07249b5e86842d6b48ce2a0910f1efe27b84e2 /src/core/hle/service/service.cpp | |
| parent | Merge pull request #949 from lioncash/priv (diff) | |
| parent | service: Add usb services (diff) | |
| download | yuzu-c392650e21dfcfd8663c44d4168ea3e527e19d5e.tar.gz yuzu-c392650e21dfcfd8663c44d4168ea3e527e19d5e.tar.xz yuzu-c392650e21dfcfd8663c44d4168ea3e527e19d5e.zip | |
Merge pull request #952 from lioncash/usb
service: Add usb 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 31ea79773..889cdd41a 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -63,6 +63,7 @@ | |||
| 63 | #include "core/hle/service/spl/module.h" | 63 | #include "core/hle/service/spl/module.h" |
| 64 | #include "core/hle/service/ssl/ssl.h" | 64 | #include "core/hle/service/ssl/ssl.h" |
| 65 | #include "core/hle/service/time/time.h" | 65 | #include "core/hle/service/time/time.h" |
| 66 | #include "core/hle/service/usb/usb.h" | ||
| 66 | #include "core/hle/service/vi/vi.h" | 67 | #include "core/hle/service/vi/vi.h" |
| 67 | #include "core/hle/service/wlan/wlan.h" | 68 | #include "core/hle/service/wlan/wlan.h" |
| 68 | 69 | ||
| @@ -249,6 +250,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) { | |||
| 249 | SPL::InstallInterfaces(*sm); | 250 | SPL::InstallInterfaces(*sm); |
| 250 | SSL::InstallInterfaces(*sm); | 251 | SSL::InstallInterfaces(*sm); |
| 251 | Time::InstallInterfaces(*sm); | 252 | Time::InstallInterfaces(*sm); |
| 253 | USB::InstallInterfaces(*sm); | ||
| 252 | VI::InstallInterfaces(*sm, nv_flinger); | 254 | VI::InstallInterfaces(*sm, nv_flinger); |
| 253 | WLAN::InstallInterfaces(*sm); | 255 | WLAN::InstallInterfaces(*sm); |
| 254 | 256 | ||