diff options
| author | Mat M <mathew1800@gmail.com> | 2018-08-08 02:37:32 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-08 02:37:32 -0400 |
| commit | 9fde7d739a9e4e3967668ad977d86646ac4c2c3f (patch) | |
| tree | 631c6af28f72ad9fbbca5caa42a0dc9b2f53afff /src/core/hle | |
| parent | 2bc296801a4f954b0757d03f92e02e743a90c04e (diff) | |
| parent | 3c498189b6628fdf6dadcc297a313ea51f0c4e2e (diff) | |
Merge pull request #983 from mailwl/hid-fix
hid: fix IsSixAxisSensorAtRest() response
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/service/hid/hid.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp index 8f0262e34..dcdfa0e19 100644 --- a/src/core/hle/service/hid/hid.cpp +++ b/src/core/hle/service/hid/hid.cpp @@ -457,7 +457,7 @@ private: } void IsSixAxisSensorAtRest(Kernel::HLERequestContext& ctx) { - IPC::ResponseBuilder rb{ctx, 2}; + IPC::ResponseBuilder rb{ctx, 3}; rb.Push(RESULT_SUCCESS); // TODO (Hexagon12): Properly implement reading gyroscope values from controllers. rb.Push(true); |
