input_common: Reintroduce custom pro controller support

This commit is contained in:
Narr the Reg 2023-02-09 19:59:12 -06:00
parent 7bad3a7e5e
commit acba9a6b76
9 changed files with 92 additions and 7 deletions

View file

@ -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