Added HID_SPVR service and split HID_U implementation into service/hid/hid.xxx
This commit is contained in:
parent
8946df97b5
commit
1f109c6b49
15 changed files with 378 additions and 264 deletions
|
@ -12,6 +12,7 @@
|
|||
#include "core/hle/service/service.h"
|
||||
#include "core/hle/service/fs/archive.h"
|
||||
#include "core/hle/service/cfg/cfg.h"
|
||||
#include "core/hle/service/hid/hid.h"
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
|
@ -70,6 +71,7 @@ void Init() {
|
|||
Service::Init();
|
||||
Service::FS::ArchiveInit();
|
||||
Service::CFG::CFGInit();
|
||||
Service::HID::HIDInit();
|
||||
|
||||
RegisterAllModules();
|
||||
|
||||
|
@ -79,6 +81,7 @@ void Init() {
|
|||
}
|
||||
|
||||
void Shutdown() {
|
||||
Service::HID::HIDShutdown();
|
||||
Service::CFG::CFGShutdown();
|
||||
Service::FS::ArchiveShutdown();
|
||||
Service::Shutdown();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue