mirror of
https://github.com/PabloMK7/citra
synced 2024-11-15 05:08:23 +00:00
Merge pull request #4139 from tgsm/hid-update-table
Service/HID: update function table
This commit is contained in:
commit
fffa55b5d8
2 changed files with 4 additions and 0 deletions
|
@ -9,6 +9,8 @@ namespace HID {
|
|||
|
||||
Spvr::Spvr(std::shared_ptr<Module> 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"},
|
||||
|
|
|
@ -9,6 +9,8 @@ namespace HID {
|
|||
|
||||
User::User(std::shared_ptr<Module> 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"},
|
||||
|
|
Loading…
Reference in a new issue