diff options
author | bunnei <bunneidev@gmail.com> | 2018-05-24 02:50:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-24 02:50:12 +0200 |
commit | 6b6287dda05d071f387be3ba2566f7e8fb58c2cc (patch) | |
tree | 13e721f5fd2dee0a83855dd9225263bcb449162c | |
parent | Merge pull request #460 from greggameplayer/patch-6 (diff) | |
parent | Fix deadlocks caused from HID having too many layouts (diff) | |
download | yuzu-6b6287dda05d071f387be3ba2566f7e8fb58c2cc.tar yuzu-6b6287dda05d071f387be3ba2566f7e8fb58c2cc.tar.gz yuzu-6b6287dda05d071f387be3ba2566f7e8fb58c2cc.tar.bz2 yuzu-6b6287dda05d071f387be3ba2566f7e8fb58c2cc.tar.lz yuzu-6b6287dda05d071f387be3ba2566f7e8fb58c2cc.tar.xz yuzu-6b6287dda05d071f387be3ba2566f7e8fb58c2cc.tar.zst yuzu-6b6287dda05d071f387be3ba2566f7e8fb58c2cc.zip |
-rw-r--r-- | src/core/hle/service/hid/hid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/hid.h b/src/core/hle/service/hid/hid.h index b499308d6..15eee8f01 100644 --- a/src/core/hle/service/hid/hid.h +++ b/src/core/hle/service/hid/hid.h @@ -12,7 +12,7 @@ namespace Service::HID { // Begin enums and output structs 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_MIN = -0x8000; |