summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar mailwl2018-08-08 09:32:38 +0300
committerGravatar mailwl2018-08-08 09:36:23 +0300
commit3c498189b6628fdf6dadcc297a313ea51f0c4e2e (patch)
tree631c6af28f72ad9fbbca5caa42a0dc9b2f53afff /src
parentacc: Stub GetUserCount. (#973) (diff)
downloadyuzu-3c498189b6628fdf6dadcc297a313ea51f0c4e2e.tar.gz
yuzu-3c498189b6628fdf6dadcc297a313ea51f0c4e2e.tar.xz
yuzu-3c498189b6628fdf6dadcc297a313ea51f0c4e2e.zip
hid: fix IsSixAxisSensorAtRest() response
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/hid/hid.cpp2
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:
457 } 457 }
458 458
459 void IsSixAxisSensorAtRest(Kernel::HLERequestContext& ctx) { 459 void IsSixAxisSensorAtRest(Kernel::HLERequestContext& ctx) {
460 IPC::ResponseBuilder rb{ctx, 2}; 460 IPC::ResponseBuilder rb{ctx, 3};
461 rb.Push(RESULT_SUCCESS); 461 rb.Push(RESULT_SUCCESS);
462 // TODO (Hexagon12): Properly implement reading gyroscope values from controllers. 462 // TODO (Hexagon12): Properly implement reading gyroscope values from controllers.
463 rb.Push(true); 463 rb.Push(true);