summaryrefslogtreecommitdiff
path: root/src/core/hid/emulated_controller.cpp
diff options
context:
space:
mode:
authorGravatar german772021-12-05 13:57:48 -0600
committerGravatar german772021-12-05 13:57:59 -0600
commit7347cdb65150e6a8250a619020483ab6ffcf2dbb (patch)
tree9e3d5c7b778c2798f7e5db1504098cd4f8c2ed9f /src/core/hid/emulated_controller.cpp
parentMerge pull request #7494 from Morph1984/no-time-to-wait (diff)
downloadyuzu-7347cdb65150e6a8250a619020483ab6ffcf2dbb.tar.gz
yuzu-7347cdb65150e6a8250a619020483ab6ffcf2dbb.tar.xz
yuzu-7347cdb65150e6a8250a619020483ab6ffcf2dbb.zip
core/hid: Add missing controller type
Diffstat (limited to 'src/core/hid/emulated_controller.cpp')
-rw-r--r--src/core/hid/emulated_controller.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hid/emulated_controller.cpp b/src/core/hid/emulated_controller.cpp
index 720706794..fbb19f230 100644
--- a/src/core/hid/emulated_controller.cpp
+++ b/src/core/hid/emulated_controller.cpp
@@ -882,6 +882,8 @@ bool EmulatedController::IsControllerSupported() const {
882 switch (npad_type) { 882 switch (npad_type) {
883 case NpadStyleIndex::ProController: 883 case NpadStyleIndex::ProController:
884 return supported_style_tag.fullkey; 884 return supported_style_tag.fullkey;
885 case NpadStyleIndex::Handheld:
886 return supported_style_tag.handheld;
885 case NpadStyleIndex::JoyconDual: 887 case NpadStyleIndex::JoyconDual:
886 return supported_style_tag.joycon_dual; 888 return supported_style_tag.joycon_dual;
887 case NpadStyleIndex::JoyconLeft: 889 case NpadStyleIndex::JoyconLeft: