diff options
author | Narr the Reg <juangerman-13@hotmail.com> | 2023-02-10 02:59:12 +0100 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2023-02-10 03:08:54 +0100 |
commit | acba9a6b769f96a35e02669d87ce7b19fc47b025 (patch) | |
tree | 7ebd5f331962f67ad037b086c5550c69c6dcaf64 /src/input_common/helpers/joycon_driver.cpp | |
parent | Merge pull request #9749 from ameerj/pr9559-partial-revert (diff) | |
download | yuzu-acba9a6b769f96a35e02669d87ce7b19fc47b025.tar yuzu-acba9a6b769f96a35e02669d87ce7b19fc47b025.tar.gz yuzu-acba9a6b769f96a35e02669d87ce7b19fc47b025.tar.bz2 yuzu-acba9a6b769f96a35e02669d87ce7b19fc47b025.tar.lz yuzu-acba9a6b769f96a35e02669d87ce7b19fc47b025.tar.xz yuzu-acba9a6b769f96a35e02669d87ce7b19fc47b025.tar.zst yuzu-acba9a6b769f96a35e02669d87ce7b19fc47b025.zip |
Diffstat (limited to 'src/input_common/helpers/joycon_driver.cpp')
-rw-r--r-- | src/input_common/helpers/joycon_driver.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/input_common/helpers/joycon_driver.cpp b/src/input_common/helpers/joycon_driver.cpp index 8f94c9f45..e65b6b845 100644 --- a/src/input_common/helpers/joycon_driver.cpp +++ b/src/input_common/helpers/joycon_driver.cpp @@ -543,9 +543,10 @@ void JoyconDriver::SetCallbacks(const JoyconCallbacks& callbacks) { DriverResult JoyconDriver::GetDeviceType(SDL_hid_device_info* device_info, ControllerType& controller_type) { - static constexpr std::array<std::pair<u32, ControllerType>, 2> supported_devices{ + static constexpr std::array<std::pair<u32, ControllerType>, 6> supported_devices{ std::pair<u32, ControllerType>{0x2006, ControllerType::Left}, {0x2007, ControllerType::Right}, + {0x2009, ControllerType::Pro}, }; constexpr u16 nintendo_vendor_id = 0x057e; |