diff options
| author | 2023-02-10 21:14:40 -0800 | |
|---|---|---|
| committer | 2023-02-10 21:14:40 -0800 | |
| commit | 023ac943aa0ed94836ca94bb33d49a2735275c3c (patch) | |
| tree | 26c5d15fc0816ed086191ecc626c53acbb4424d1 /src/input_common/drivers/joycon.h | |
| parent | Merge pull request #9761 from Morph1984/oops (diff) | |
| parent | input_common: Reintroduce custom pro controller support (diff) | |
| download | yuzu-023ac943aa0ed94836ca94bb33d49a2735275c3c.tar.gz yuzu-023ac943aa0ed94836ca94bb33d49a2735275c3c.tar.xz yuzu-023ac943aa0ed94836ca94bb33d49a2735275c3c.zip | |
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.h | 1 |
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 |