diff options
| author | Narr the Reg <juangerman-13@hotmail.com> | 2024-02-07 16:43:28 -0600 |
|---|---|---|
| committer | Narr the Reg <juangerman-13@hotmail.com> | 2024-02-07 18:07:32 -0600 |
| commit | b4d88a7bb406c033c3cd5c6bca6ce913fac1bcdd (patch) | |
| tree | 1e1dd7aa5bc3f544316c744cf1f28f508becb6a9 /src/core/hle/service/hid/hid.cpp | |
| parent | c10e720ba9cb979577b3af53adb1347f13ec4ad5 (diff) | |
service: hid: Migrate hidbus to new interface
Diffstat (limited to 'src/core/hle/service/hid/hid.cpp')
| -rw-r--r-- | src/core/hle/service/hid/hid.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp index b60fb9139..1fa9cfbfb 100644 --- a/src/core/hle/service/hid/hid.cpp +++ b/src/core/hle/service/hid/hid.cpp @@ -36,7 +36,7 @@ void LoopProcess(Core::System& system) { server_manager->RegisterNamedService( "hid:sys", std::make_shared<IHidSystemServer>(system, resource_manager, firmware_settings)); - server_manager->RegisterNamedService("hidbus", std::make_shared<HidBus>(system)); + server_manager->RegisterNamedService("hidbus", std::make_shared<Hidbus>(system)); server_manager->RegisterNamedService("irs", std::make_shared<IRS::IRS>(system)); server_manager->RegisterNamedService("irs:sys", std::make_shared<IRS::IRS_SYS>(system)); |
