summaryrefslogtreecommitdiff
path: root/src/input_common/drivers/joycon.h
diff options
context:
space:
mode:
authorGravatar Narr the Reg2023-02-09 19:59:12 -0600
committerGravatar Narr the Reg2023-02-09 20:08:54 -0600
commitacba9a6b769f96a35e02669d87ce7b19fc47b025 (patch)
tree7ebd5f331962f67ad037b086c5550c69c6dcaf64 /src/input_common/drivers/joycon.h
parentMerge pull request #9749 from ameerj/pr9559-partial-revert (diff)
downloadyuzu-acba9a6b769f96a35e02669d87ce7b19fc47b025.tar.gz
yuzu-acba9a6b769f96a35e02669d87ce7b19fc47b025.tar.xz
yuzu-acba9a6b769f96a35e02669d87ce7b19fc47b025.zip
input_common: Reintroduce custom pro controller support
Diffstat (limited to 'src/input_common/drivers/joycon.h')
-rw-r--r--src/input_common/drivers/joycon.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/input_common/drivers/joycon.h b/src/input_common/drivers/joycon.h
index 2149ab7fd..473ba1b9e 100644
--- a/src/input_common/drivers/joycon.h
+++ b/src/input_common/drivers/joycon.h
@@ -106,6 +106,7 @@ private:
106 // Joycon types are split by type to ease supporting dualjoycon configurations 106 // Joycon types are split by type to ease supporting dualjoycon configurations
107 std::array<std::shared_ptr<Joycon::JoyconDriver>, MaxSupportedControllers> left_joycons{}; 107 std::array<std::shared_ptr<Joycon::JoyconDriver>, MaxSupportedControllers> left_joycons{};
108 std::array<std::shared_ptr<Joycon::JoyconDriver>, MaxSupportedControllers> right_joycons{}; 108 std::array<std::shared_ptr<Joycon::JoyconDriver>, MaxSupportedControllers> right_joycons{};
109 std::array<std::shared_ptr<Joycon::JoyconDriver>, MaxSupportedControllers> pro_controller{};
109}; 110};
110 111
111} // namespace InputCommon 112} // namespace InputCommon