mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-15 05:47:59 -05:00
Added HID_SPVR service and split HID_U implementation into service/hid/hid.xxx
This commit is contained in:
@ -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();
|
||||
|
Reference in New Issue
Block a user