aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/hid/hid_user.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-03-17 10:19:59 -0400
committerbunnei <bunneidev@gmail.com>2015-03-17 10:19:59 -0400
commit0bb4b77b784dfb1e405c71033bfa9988ac024a2d (patch)
tree26263ca5db60c6ad51be2a5bfb0be135fdb91a45 /src/core/hle/service/hid/hid_user.cpp
parentef0c4aac863db37b1d8799f56c6ea9051fbafd99 (diff)
parent5b1757d6a519b4c35473da37ad209543590ee036 (diff)
Merge pull request #655 from purpasmart96/hid_fixes
HID: Proper Signal Interrupts for EnableAccelerometer & EnableGyroscopeLow along with a stub for GetSoundVolume
Diffstat (limited to 'src/core/hle/service/hid/hid_user.cpp')
-rw-r--r--src/core/hle/service/hid/hid_user.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/core/hle/service/hid/hid_user.cpp b/src/core/hle/service/hid/hid_user.cpp
index c2d5758fb..3682c9416 100644
--- a/src/core/hle/service/hid/hid_user.cpp
+++ b/src/core/hle/service/hid/hid_user.cpp
@@ -10,14 +10,14 @@ namespace Service {
namespace HID {
const Interface::FunctionInfo FunctionTable[] = {
- {0x000A0000, GetIPCHandles, "GetIPCHandles"},
- {0x00110000, nullptr, "EnableAccelerometer"},
- {0x00120000, nullptr, "DisableAccelerometer"},
- {0x00130000, nullptr, "EnableGyroscopeLow"},
- {0x00140000, nullptr, "DisableGyroscopeLow"},
- {0x00150000, nullptr, "GetGyroscopeLowRawToDpsCoefficient"},
- {0x00160000, nullptr, "GetGyroscopeLowCalibrateParam"},
- {0x00170000, nullptr, "GetSoundVolume"},
+ {0x000A0000, GetIPCHandles, "GetIPCHandles"},
+ {0x00110000, EnableAccelerometer, "EnableAccelerometer"},
+ {0x00120000, nullptr, "DisableAccelerometer"},
+ {0x00130000, EnableGyroscopeLow, "EnableGyroscopeLow"},
+ {0x00140000, nullptr, "DisableGyroscopeLow"},
+ {0x00150000, nullptr, "GetGyroscopeLowRawToDpsCoefficient"},
+ {0x00160000, nullptr, "GetGyroscopeLowCalibrateParam"},
+ {0x00170000, GetSoundVolume, "GetSoundVolume"},
};
HID_U_Interface::HID_U_Interface() {