diff options
| author | Narr the Reg <juangerman-13@hotmail.com> | 2023-11-17 11:46:26 -0600 |
|---|---|---|
| committer | german77 <juangerman-13@hotmail.com> | 2023-11-20 17:19:17 -0600 |
| commit | cff2d0e19e164d879b57bab9d06306fa70a1049e (patch) | |
| tree | d3288aa0bc2b7988a492fe51bc04e2c822ceb275 /src/core/hle/service/hid/controllers/keyboard.h | |
| parent | 8da5bd27e9d4fe5e850700039d79f77e52ba6aea (diff) | |
service: hid: Create appropriate hid resources
Diffstat (limited to 'src/core/hle/service/hid/controllers/keyboard.h')
| -rw-r--r-- | src/core/hle/service/hid/controllers/keyboard.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/hid/controllers/keyboard.h b/src/core/hle/service/hid/controllers/keyboard.h index 7532f53c6..172ec1309 100644 --- a/src/core/hle/service/hid/controllers/keyboard.h +++ b/src/core/hle/service/hid/controllers/keyboard.h @@ -14,10 +14,10 @@ struct KeyboardKey; } // namespace Core::HID namespace Service::HID { -class Controller_Keyboard final : public ControllerBase { +class Keyboard final : public ControllerBase { public: - explicit Controller_Keyboard(Core::HID::HIDCore& hid_core_, u8* raw_shared_memory_); - ~Controller_Keyboard() override; + explicit Keyboard(Core::HID::HIDCore& hid_core_, u8* raw_shared_memory_); + ~Keyboard() override; // Called when the controller is initialized void OnInit() override; |
