diff options
| author | 2016-12-08 01:49:46 -0800 | |
|---|---|---|
| committer | 2016-12-08 01:49:45 -0800 | |
| commit | 1840685ee89f6ea6b21ed57a2f43228a0e75437c (patch) | |
| tree | 304a7eec4f7d0f81737d2ef8fa5fd86e198e5b63 /src/core/hle/service/service.cpp | |
| parent | Merge pull request #2274 from degasus/master (diff) | |
| parent | service: Add mvd and qtm services (diff) | |
| download | yuzu-1840685ee89f6ea6b21ed57a2f43228a0e75437c.tar.gz yuzu-1840685ee89f6ea6b21ed57a2f43228a0e75437c.tar.xz yuzu-1840685ee89f6ea6b21ed57a2f43228a0e75437c.zip | |
Merge pull request #2286 from lioncash/svc
service: Add mvd and qtm services
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 5f16c18fa..407ca4139 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -26,6 +26,7 @@ | |||
| 26 | #include "core/hle/service/ir/ir.h" | 26 | #include "core/hle/service/ir/ir.h" |
| 27 | #include "core/hle/service/ldr_ro/ldr_ro.h" | 27 | #include "core/hle/service/ldr_ro/ldr_ro.h" |
| 28 | #include "core/hle/service/mic_u.h" | 28 | #include "core/hle/service/mic_u.h" |
| 29 | #include "core/hle/service/mvd/mvd.h" | ||
| 29 | #include "core/hle/service/ndm/ndm.h" | 30 | #include "core/hle/service/ndm/ndm.h" |
| 30 | #include "core/hle/service/news/news.h" | 31 | #include "core/hle/service/news/news.h" |
| 31 | #include "core/hle/service/nfc/nfc.h" | 32 | #include "core/hle/service/nfc/nfc.h" |
| @@ -34,6 +35,7 @@ | |||
| 34 | #include "core/hle/service/nwm_uds.h" | 35 | #include "core/hle/service/nwm_uds.h" |
| 35 | #include "core/hle/service/pm_app.h" | 36 | #include "core/hle/service/pm_app.h" |
| 36 | #include "core/hle/service/ptm/ptm.h" | 37 | #include "core/hle/service/ptm/ptm.h" |
| 38 | #include "core/hle/service/qtm/qtm.h" | ||
| 37 | #include "core/hle/service/service.h" | 39 | #include "core/hle/service/service.h" |
| 38 | #include "core/hle/service/soc_u.h" | 40 | #include "core/hle/service/soc_u.h" |
| 39 | #include "core/hle/service/srv.h" | 41 | #include "core/hle/service/srv.h" |
| @@ -121,11 +123,13 @@ void Init() { | |||
| 121 | FRD::Init(); | 123 | FRD::Init(); |
| 122 | HID::Init(); | 124 | HID::Init(); |
| 123 | IR::Init(); | 125 | IR::Init(); |
| 126 | MVD::Init(); | ||
| 124 | NDM::Init(); | 127 | NDM::Init(); |
| 125 | NEWS::Init(); | 128 | NEWS::Init(); |
| 126 | NFC::Init(); | 129 | NFC::Init(); |
| 127 | NIM::Init(); | 130 | NIM::Init(); |
| 128 | PTM::Init(); | 131 | PTM::Init(); |
| 132 | QTM::Init(); | ||
| 129 | 133 | ||
| 130 | AddService(new AC_U::Interface); | 134 | AddService(new AC_U::Interface); |
| 131 | AddService(new ACT_A::Interface); | 135 | AddService(new ACT_A::Interface); |