summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/hid_user.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-03-17 15:19:59 +0100
committerbunnei <bunneidev@gmail.com>2015-03-17 15:19:59 +0100
commit0bb4b77b784dfb1e405c71033bfa9988ac024a2d (patch)
tree26263ca5db60c6ad51be2a5bfb0be135fdb91a45 /src/core/hle/service/hid/hid_user.cpp
parentMerge pull request #660 from purpasmart96/ncch_updates (diff)
parentHID: Proper Signal Interrupts for EnableAccelerometer & EnableGyroscopeLow along (diff)
downloadyuzu-0bb4b77b784dfb1e405c71033bfa9988ac024a2d.tar
yuzu-0bb4b77b784dfb1e405c71033bfa9988ac024a2d.tar.gz
yuzu-0bb4b77b784dfb1e405c71033bfa9988ac024a2d.tar.bz2
yuzu-0bb4b77b784dfb1e405c71033bfa9988ac024a2d.tar.lz
yuzu-0bb4b77b784dfb1e405c71033bfa9988ac024a2d.tar.xz
yuzu-0bb4b77b784dfb1e405c71033bfa9988ac024a2d.tar.zst
yuzu-0bb4b77b784dfb1e405c71033bfa9988ac024a2d.zip
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() {