aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/hid/hid_user.cpp
diff options
context:
space:
mode:
authorGravatar purpasmart96 <kanzoconfigz@hotmail.com>2015-05-22 15:55:27 -0700
committerGravatar purpasmart96 <kanzoconfigz@hotmail.com>2015-05-22 15:55:27 -0700
commit0c62b7b10642ec88e2bb892f9f857cd51e0d4514 (patch)
treecf29f5d0178f27c31985ab6827e6fa40eba3bfc1 /src/core/hle/service/hid/hid_user.cpp
parenteca2b71fa8a6c4c104695b866952e4295dc6466f (diff)
HID: Stub DisableAccelerometer and DisableGyroscopeLow
Diffstat (limited to 'src/core/hle/service/hid/hid_user.cpp')
-rw-r--r--src/core/hle/service/hid/hid_user.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/hid/hid_user.cpp b/src/core/hle/service/hid/hid_user.cpp
index 3682c941..fbfb9e88 100644
--- a/src/core/hle/service/hid/hid_user.cpp
+++ b/src/core/hle/service/hid/hid_user.cpp
@@ -12,9 +12,9 @@ namespace HID {
const Interface::FunctionInfo FunctionTable[] = {
{0x000A0000, GetIPCHandles, "GetIPCHandles"},
{0x00110000, EnableAccelerometer, "EnableAccelerometer"},
- {0x00120000, nullptr, "DisableAccelerometer"},
+ {0x00120000, DisableAccelerometer, "DisableAccelerometer"},
{0x00130000, EnableGyroscopeLow, "EnableGyroscopeLow"},
- {0x00140000, nullptr, "DisableGyroscopeLow"},
+ {0x00140000, DisableGyroscopeLow, "DisableGyroscopeLow"},
{0x00150000, nullptr, "GetGyroscopeLowRawToDpsCoefficient"},
{0x00160000, nullptr, "GetGyroscopeLowCalibrateParam"},
{0x00170000, GetSoundVolume, "GetSoundVolume"},