Parcourir la source

HID: Added new function entries from 3dbrew to FunctionTable.

HID: Fix typo with DisableGyroscopeLow command.
bunnei il y a 12 ans
Parent
commit
091f6cf55b
1 fichiers modifiés avec 5 ajouts et 0 suppressions
  1. 5 0
      src/core/hle/service/hid.cpp

+ 5 - 0
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"},
 };
 
 ////////////////////////////////////////////////////////////////////////////////////////////////////