diff options
author | Narr the Reg <juangerman-13@hotmail.com> | 2023-08-11 08:44:42 +0200 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2023-08-11 18:13:21 +0200 |
commit | bdd96118d13d69c753b635e6adec475e3ea2bf6b (patch) | |
tree | e97a07f318347b6ca1d8bb182498bb6e0b1c05a5 /src/core/hle/service/hid/controllers | |
parent | Merge pull request #11093 from liamwhite/result-ergonomics (diff) | |
download | yuzu-bdd96118d13d69c753b635e6adec475e3ea2bf6b.tar yuzu-bdd96118d13d69c753b635e6adec475e3ea2bf6b.tar.gz yuzu-bdd96118d13d69c753b635e6adec475e3ea2bf6b.tar.bz2 yuzu-bdd96118d13d69c753b635e6adec475e3ea2bf6b.tar.lz yuzu-bdd96118d13d69c753b635e6adec475e3ea2bf6b.tar.xz yuzu-bdd96118d13d69c753b635e6adec475e3ea2bf6b.tar.zst yuzu-bdd96118d13d69c753b635e6adec475e3ea2bf6b.zip |
Diffstat (limited to 'src/core/hle/service/hid/controllers')
-rw-r--r-- | src/core/hle/service/hid/controllers/touchscreen.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/core/hle/service/hid/controllers/touchscreen.h b/src/core/hle/service/hid/controllers/touchscreen.h index e57a3a80e..dd00921fd 100644 --- a/src/core/hle/service/hid/controllers/touchscreen.h +++ b/src/core/hle/service/hid/controllers/touchscreen.h @@ -16,22 +16,6 @@ class EmulatedConsole; namespace Service::HID { class Controller_Touchscreen final : public ControllerBase { public: - // This is nn::hid::TouchScreenModeForNx - enum class TouchScreenModeForNx : u8 { - UseSystemSetting, - Finger, - Heat2, - }; - - // This is nn::hid::TouchScreenConfigurationForNx - struct TouchScreenConfigurationForNx { - TouchScreenModeForNx mode{TouchScreenModeForNx::UseSystemSetting}; - INSERT_PADDING_BYTES_NOINIT(0x7); - INSERT_PADDING_BYTES_NOINIT(0xF); // Reserved - }; - static_assert(sizeof(TouchScreenConfigurationForNx) == 0x17, - "TouchScreenConfigurationForNx is an invalid size"); - explicit Controller_Touchscreen(Core::HID::HIDCore& hid_core_, u8* raw_shared_memory_); ~Controller_Touchscreen() override; |