summaryrefslogtreecommitdiff
path: root/src/input_common/drivers/joycon.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2023-02-10 21:14:40 -0800
committerGitHub <noreply@github.com>2023-02-10 21:14:40 -0800
commit023ac943aa0ed94836ca94bb33d49a2735275c3c (patch)
tree26c5d15fc0816ed086191ecc626c53acbb4424d1 /src/input_common/drivers/joycon.h
parentb3a8c0dc495a7cce2de5c7dd8b6db83cf968c541 (diff)
parentacba9a6b769f96a35e02669d87ce7b19fc47b025 (diff)
Merge pull request #9759 from german77/pro_controller
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:
// Joycon types are split by type to ease supporting dualjoycon configurations
std::array<std::shared_ptr<Joycon::JoyconDriver>, MaxSupportedControllers> left_joycons{};
std::array<std::shared_ptr<Joycon::JoyconDriver>, MaxSupportedControllers> right_joycons{};
+ std::array<std::shared_ptr<Joycon::JoyconDriver>, MaxSupportedControllers> pro_controller{};
};
} // namespace InputCommon