summaryrefslogtreecommitdiff
path: root/src/core/hle
diff options
context:
space:
mode:
authorGravatar liamwhite2024-01-12 10:02:13 -0500
committerGravatar GitHub2024-01-12 10:02:13 -0500
commitf7a3c135e2f17cc00d1f006146afc73a21408e3a (patch)
treef5439b576b7ba8e2d6835b49d45a558c66121ae7 /src/core/hle
parentMerge pull request #12642 from t895/adapter-refactor (diff)
parentservice: hid: Create abstracted pad structure (diff)
downloadyuzu-f7a3c135e2f17cc00d1f006146afc73a21408e3a.tar.gz
yuzu-f7a3c135e2f17cc00d1f006146afc73a21408e3a.tar.xz
yuzu-f7a3c135e2f17cc00d1f006146afc73a21408e3a.zip
Merge pull request #12605 from german77/abstract
service: hid: Create abstracted pad structure
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/hid/hid_server.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/hid_server.cpp b/src/core/hle/service/hid/hid_server.cpp
index 74898888a..1951da33b 100644
--- a/src/core/hle/service/hid/hid_server.cpp
+++ b/src/core/hle/service/hid/hid_server.cpp
@@ -1498,7 +1498,7 @@ void IHidServer::GetVibrationDeviceInfo(HLERequestContext& ctx) {
1498 bool check_device_index = false; 1498 bool check_device_index = false;
1499 1499
1500 switch (vibration_device_handle.npad_type) { 1500 switch (vibration_device_handle.npad_type) {
1501 case Core::HID::NpadStyleIndex::ProController: 1501 case Core::HID::NpadStyleIndex::Fullkey:
1502 case Core::HID::NpadStyleIndex::Handheld: 1502 case Core::HID::NpadStyleIndex::Handheld:
1503 case Core::HID::NpadStyleIndex::JoyconDual: 1503 case Core::HID::NpadStyleIndex::JoyconDual:
1504 case Core::HID::NpadStyleIndex::JoyconLeft: 1504 case Core::HID::NpadStyleIndex::JoyconLeft: