From 7136777fec309f1a844c1953f5d4f4133b3c9a38 Mon Sep 17 00:00:00 2001 From: tgsm Date: Sat, 25 Aug 2018 20:45:44 -0400 Subject: [PATCH] Service/HID: update function table update --- src/core/hle/service/hid/hid_spvr.cpp | 2 ++ src/core/hle/service/hid/hid_user.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/core/hle/service/hid/hid_spvr.cpp b/src/core/hle/service/hid/hid_spvr.cpp index 3d5900fd9..acc93d570 100644 --- a/src/core/hle/service/hid/hid_spvr.cpp +++ b/src/core/hle/service/hid/hid_spvr.cpp @@ -9,6 +9,8 @@ namespace HID { Spvr::Spvr(std::shared_ptr hid) : Module::Interface(std::move(hid), "hid:SPVR", 6) { static const FunctionInfo functions[] = { + {0x00010200, nullptr, "CalibrateTouchScreen"}, + {0x00020000, nullptr, "UpdateTouchConfig"}, {0x000A0000, &Spvr::GetIPCHandles, "GetIPCHandles"}, {0x000B0000, nullptr, "StartAnalogStickCalibration"}, {0x000E0000, nullptr, "GetAnalogStickCalibrateParam"}, diff --git a/src/core/hle/service/hid/hid_user.cpp b/src/core/hle/service/hid/hid_user.cpp index 88213dab2..818a2589c 100644 --- a/src/core/hle/service/hid/hid_user.cpp +++ b/src/core/hle/service/hid/hid_user.cpp @@ -9,6 +9,8 @@ namespace HID { User::User(std::shared_ptr hid) : Module::Interface(std::move(hid), "hid:USER", 6) { static const FunctionInfo functions[] = { + {0x00010200, nullptr, "CalibrateTouchScreen"}, + {0x00020000, nullptr, "UpdateTouchConfig"}, {0x000A0000, &User::GetIPCHandles, "GetIPCHandles"}, {0x000B0000, nullptr, "StartAnalogStickCalibration"}, {0x000E0000, nullptr, "GetAnalogStickCalibrateParam"},