diff options
| author | 2015-01-21 18:36:46 -0500 | |
|---|---|---|
| committer | 2015-01-21 18:36:46 -0500 | |
| commit | 0c7498545f7f9beeb7e8070e1a1955a8d6f40bb6 (patch) | |
| tree | 9eaedc4e6d764f3436a45ba05e79f16fec1ff299 /src/core/hle/hle.cpp | |
| parent | Merge pull request #429 from Kingcom/titlebar (diff) | |
| parent | Added HID_SPVR service and split HID_U implementation into service/hid/hid.xxx (diff) | |
| download | yuzu-0c7498545f7f9beeb7e8070e1a1955a8d6f40bb6.tar.gz yuzu-0c7498545f7f9beeb7e8070e1a1955a8d6f40bb6.tar.xz yuzu-0c7498545f7f9beeb7e8070e1a1955a8d6f40bb6.zip | |
Merge pull request #491 from archshift/hidspvr
Added HID_SPVR service and split HID_U implementation into hle/service/hid/hid.xxx
Diffstat (limited to 'src/core/hle/hle.cpp')
| -rw-r--r-- | src/core/hle/hle.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/hle.cpp b/src/core/hle/hle.cpp index 11570c8b4..5a2edeb4a 100644 --- a/src/core/hle/hle.cpp +++ b/src/core/hle/hle.cpp | |||
| @@ -12,6 +12,7 @@ | |||
| 12 | #include "core/hle/service/service.h" | 12 | #include "core/hle/service/service.h" |
| 13 | #include "core/hle/service/fs/archive.h" | 13 | #include "core/hle/service/fs/archive.h" |
| 14 | #include "core/hle/service/cfg/cfg.h" | 14 | #include "core/hle/service/cfg/cfg.h" |
| 15 | #include "core/hle/service/hid/hid.h" | ||
| 15 | 16 | ||
| 16 | //////////////////////////////////////////////////////////////////////////////////////////////////// | 17 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
| 17 | 18 | ||
| @@ -70,6 +71,7 @@ void Init() { | |||
| 70 | Service::Init(); | 71 | Service::Init(); |
| 71 | Service::FS::ArchiveInit(); | 72 | Service::FS::ArchiveInit(); |
| 72 | Service::CFG::CFGInit(); | 73 | Service::CFG::CFGInit(); |
| 74 | Service::HID::HIDInit(); | ||
| 73 | 75 | ||
| 74 | RegisterAllModules(); | 76 | RegisterAllModules(); |
| 75 | 77 | ||
| @@ -79,6 +81,7 @@ void Init() { | |||
| 79 | } | 81 | } |
| 80 | 82 | ||
| 81 | void Shutdown() { | 83 | void Shutdown() { |
| 84 | Service::HID::HIDShutdown(); | ||
| 82 | Service::CFG::CFGShutdown(); | 85 | Service::CFG::CFGShutdown(); |
| 83 | Service::FS::ArchiveShutdown(); | 86 | Service::FS::ArchiveShutdown(); |
| 84 | Service::Shutdown(); | 87 | Service::Shutdown(); |