summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/hidbus/hidbus_base.h
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2022-01-09 06:23:40 +0100
committerNarr the Reg <juangerman-13@hotmail.com>2022-04-16 07:49:26 +0200
commitd2f9412cf1717f884855af22793f3a1e5815c967 (patch)
treea1beab6c5d35dbfb8a58ef45f919e9d4a7d1d58d /src/core/hle/service/hid/hidbus/hidbus_base.h
parenthidbus: Implement hidbus and ringcon (diff)
downloadyuzu-d2f9412cf1717f884855af22793f3a1e5815c967.tar
yuzu-d2f9412cf1717f884855af22793f3a1e5815c967.tar.gz
yuzu-d2f9412cf1717f884855af22793f3a1e5815c967.tar.bz2
yuzu-d2f9412cf1717f884855af22793f3a1e5815c967.tar.lz
yuzu-d2f9412cf1717f884855af22793f3a1e5815c967.tar.xz
yuzu-d2f9412cf1717f884855af22793f3a1e5815c967.tar.zst
yuzu-d2f9412cf1717f884855af22793f3a1e5815c967.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/hid/hidbus/hidbus_base.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/hidbus/hidbus_base.h b/src/core/hle/service/hid/hidbus/hidbus_base.h
index 41e571998..13d073a3d 100644
--- a/src/core/hle/service/hid/hidbus/hidbus_base.h
+++ b/src/core/hle/service/hid/hidbus/hidbus_base.h
@@ -165,6 +165,7 @@ protected:
bool device_enabled{};
bool polling_mode_enabled{};
JoyPollingMode polling_mode = {};
+ // TODO(German77): All data accessors need to be replaced with a ring lifo object
JoyDisableSixAxisDataAccessor disable_sixaxis_data{};
JoyEnableSixAxisDataAccessor enable_sixaxis_data{};
ButtonOnlyPollingDataAccessor button_only_data{};
@@ -172,7 +173,7 @@ protected:
u8* transfer_memory{nullptr};
bool is_transfer_memory_set{};
- Kernel::KEvent* send_command_asyc_event;
+ Kernel::KEvent* send_command_async_event;
KernelHelpers::ServiceContext& service_context;
};
} // namespace Service::HID