diff options
author | bunnei <bunneidev@gmail.com> | 2014-08-08 02:33:59 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2014-08-13 00:08:09 +0200 |
commit | 091f6cf55b43cca5913079d0ab7226ff72515ec7 (patch) | |
tree | 9740ee42c254195a638832ab0529b65506a14d24 /src | |
parent | HID: Implemented HID_User::GetIPCHandles service function. (diff) | |
download | yuzu-091f6cf55b43cca5913079d0ab7226ff72515ec7.tar yuzu-091f6cf55b43cca5913079d0ab7226ff72515ec7.tar.gz yuzu-091f6cf55b43cca5913079d0ab7226ff72515ec7.tar.bz2 yuzu-091f6cf55b43cca5913079d0ab7226ff72515ec7.tar.lz yuzu-091f6cf55b43cca5913079d0ab7226ff72515ec7.tar.xz yuzu-091f6cf55b43cca5913079d0ab7226ff72515ec7.tar.zst yuzu-091f6cf55b43cca5913079d0ab7226ff72515ec7.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/hid.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/service/hid.cpp b/src/core/hle/service/hid.cpp index 3730b117a..4e470795f 100644 --- a/src/core/hle/service/hid.cpp +++ b/src/core/hle/service/hid.cpp @@ -46,10 +46,15 @@ void GetIPCHandles(Service::Interface* self) { const Interface::FunctionInfo FunctionTable[] = { {0x000A0000, GetIPCHandles, "GetIPCHandles"}, + {0x000B0000, nullptr, "StartAnalogStickCalibration"}, + {0x000E0000, nullptr, "GetAnalogStickCalibrateParam"}, {0x00110000, nullptr, "EnableAccelerometer"}, + {0x00120000, nullptr, "DisableAccelerometer"}, {0x00130000, nullptr, "EnableGyroscopeLow"}, + {0x00140000, nullptr, "DisableGyroscopeLow"}, {0x00150000, nullptr, "GetGyroscopeLowRawToDpsCoefficient"}, {0x00160000, nullptr, "GetGyroscopeLowCalibrateParam"}, + {0x00170000, nullptr, "GetSoundVolume"}, }; //////////////////////////////////////////////////////////////////////////////////////////////////// |