diff options
author | german77 <juangerman-13@hotmail.com> | 2021-09-27 02:45:47 +0200 |
---|---|---|
committer | german77 <juangerman-13@hotmail.com> | 2021-09-27 02:45:47 +0200 |
commit | e401c77351f59633cf5281a29788a05cddd94277 (patch) | |
tree | 00635685b76fd12c1b071256dc1d6e0a00282365 /src/core/hle/service/hid | |
parent | service/btdrv: Update to 13.0.0 (diff) | |
download | yuzu-e401c77351f59633cf5281a29788a05cddd94277.tar yuzu-e401c77351f59633cf5281a29788a05cddd94277.tar.gz yuzu-e401c77351f59633cf5281a29788a05cddd94277.tar.bz2 yuzu-e401c77351f59633cf5281a29788a05cddd94277.tar.lz yuzu-e401c77351f59633cf5281a29788a05cddd94277.tar.xz yuzu-e401c77351f59633cf5281a29788a05cddd94277.tar.zst yuzu-e401c77351f59633cf5281a29788a05cddd94277.zip |
Diffstat (limited to 'src/core/hle/service/hid')
-rw-r--r-- | src/core/hle/service/hid/controllers/npad.h | 1 | ||||
-rw-r--r-- | src/core/hle/service/hid/hid.cpp | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/core/hle/service/hid/controllers/npad.h b/src/core/hle/service/hid/controllers/npad.h index 4fcc6f93a..9ee146caf 100644 --- a/src/core/hle/service/hid/controllers/npad.h +++ b/src/core/hle/service/hid/controllers/npad.h @@ -507,6 +507,7 @@ private: LarkNesRight = 18, Lucia = 19, Verification = 20, + Lagon = 21, }; struct NPadEntry { diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp index a1707a72a..c930996ab 100644 --- a/src/core/hle/service/hid/hid.cpp +++ b/src/core/hle/service/hid/hid.cpp @@ -239,6 +239,12 @@ Hid::Hid(Core::System& system_) {81, &Hid::ResetGyroscopeZeroDriftMode, "ResetGyroscopeZeroDriftMode"}, {82, &Hid::IsSixAxisSensorAtRest, "IsSixAxisSensorAtRest"}, {83, &Hid::IsFirmwareUpdateAvailableForSixAxisSensor, "IsFirmwareUpdateAvailableForSixAxisSensor"}, + {84, nullptr, "EnableSixAxisSensorUnalteredPassthrough"}, + {85, nullptr, "IsSixAxisSensorUnalteredPassthroughEnabled"}, + {86, nullptr, "StoreSixAxisSensorCalibrationParameter"}, + {87, nullptr, "LoadSixAxisSensorCalibrationParameter"}, + {88, nullptr, "GetSixAxisSensorIcInformation"}, + {89, nullptr, "ResetIsSixAxisSensorDeviceNewlyAssigned"}, {91, &Hid::ActivateGesture, "ActivateGesture"}, {100, &Hid::SetSupportedNpadStyleSet, "SetSupportedNpadStyleSet"}, {101, &Hid::GetSupportedNpadStyleSet, "GetSupportedNpadStyleSet"}, @@ -1656,6 +1662,9 @@ public: {12, nullptr, "UnsetTouchScreenAutoPilotState"}, {13, nullptr, "GetTouchScreenConfiguration"}, {14, nullptr, "ProcessTouchScreenAutoTune"}, + {15, nullptr, "ForceStopTouchScreenManagement"}, + {16, nullptr, "ForceRestartTouchScreenManagement"}, + {17, nullptr, "IsTouchScreenManaged"}, {20, nullptr, "DeactivateMouse"}, {21, nullptr, "SetMouseAutoPilotState"}, {22, nullptr, "UnsetMouseAutoPilotState"}, |