diff options
| author | 2023-01-27 20:35:51 -0600 | |
|---|---|---|
| committer | 2023-01-29 19:11:46 -0600 | |
| commit | 11fea5deea6dd72badbed521ac5639a48d591dc6 (patch) | |
| tree | 22edff6c56eb1861020481cac86aacbf599162e2 /src/input_common/drivers/joycon.cpp | |
| parent | Merge pull request #9706 from Morph1984/github-tagged-merge (diff) | |
| download | yuzu-11fea5deea6dd72badbed521ac5639a48d591dc6.tar.gz yuzu-11fea5deea6dd72badbed521ac5639a48d591dc6.tar.xz yuzu-11fea5deea6dd72badbed521ac5639a48d591dc6.zip | |
input_common: joycon: Fill missing enum data
Diffstat (limited to 'src/input_common/drivers/joycon.cpp')
| -rw-r--r-- | src/input_common/drivers/joycon.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/input_common/drivers/joycon.cpp b/src/input_common/drivers/joycon.cpp index cedc94e63..4fcfb4510 100644 --- a/src/input_common/drivers/joycon.cpp +++ b/src/input_common/drivers/joycon.cpp | |||
| @@ -668,12 +668,10 @@ std::string Joycons::JoyconName(Joycon::ControllerType type) const { | |||
| 668 | return "Right Joycon"; | 668 | return "Right Joycon"; |
| 669 | case Joycon::ControllerType::Pro: | 669 | case Joycon::ControllerType::Pro: |
| 670 | return "Pro Controller"; | 670 | return "Pro Controller"; |
| 671 | case Joycon::ControllerType::Grip: | ||
| 672 | return "Grip Controller"; | ||
| 673 | case Joycon::ControllerType::Dual: | 671 | case Joycon::ControllerType::Dual: |
| 674 | return "Dual Joycon"; | 672 | return "Dual Joycon"; |
| 675 | default: | 673 | default: |
| 676 | return "Unknown Joycon"; | 674 | return "Unknown Switch Controller"; |
| 677 | } | 675 | } |
| 678 | } | 676 | } |
| 679 | } // namespace InputCommon | 677 | } // namespace InputCommon |