mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2024-12-27 19:45:43 +00:00
Merge pull request #462 from ogniK5377/hid-fix
Fix deadlocks caused from HID having too many layouts
This commit is contained in:
commit
6b6287dda0
|
@ -12,7 +12,7 @@ namespace Service::HID {
|
||||||
// Begin enums and output structs
|
// Begin enums and output structs
|
||||||
|
|
||||||
constexpr u32 HID_NUM_ENTRIES = 17;
|
constexpr u32 HID_NUM_ENTRIES = 17;
|
||||||
constexpr u32 HID_NUM_LAYOUTS = 7;
|
constexpr u32 HID_NUM_LAYOUTS = 2;
|
||||||
constexpr s32 HID_JOYSTICK_MAX = 0x8000;
|
constexpr s32 HID_JOYSTICK_MAX = 0x8000;
|
||||||
constexpr s32 HID_JOYSTICK_MIN = -0x8000;
|
constexpr s32 HID_JOYSTICK_MIN = -0x8000;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue