summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2020-03-22 23:31:08 -0400
committerGravatar GitHub2020-03-22 23:31:08 -0400
commitdc4415811c1a8235883065fe4bcf53d721cb8c69 (patch)
treec30ce452ee4f4ea16620b3a99127155c4995a09f
parentMerge pull request #3477 from FearlessTobi/webapplet-shit (diff)
parentsm/controller: Increase PointerBufferSize (diff)
downloadyuzu-dc4415811c1a8235883065fe4bcf53d721cb8c69.tar.gz
yuzu-dc4415811c1a8235883065fe4bcf53d721cb8c69.tar.xz
yuzu-dc4415811c1a8235883065fe4bcf53d721cb8c69.zip
Merge pull request #3546 from FearlessTobi/pointer-buffer-size
sm/controller: Increase PointerBufferSize
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/sm/controller.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/sm/controller.cpp b/src/core/hle/service/sm/controller.cpp
index c45b285f8..9cca84b31 100644
--- a/src/core/hle/service/sm/controller.cpp
+++ b/src/core/hle/service/sm/controller.cpp
@@ -44,7 +44,7 @@ void Controller::QueryPointerBufferSize(Kernel::HLERequestContext& ctx) {
44 44
45 IPC::ResponseBuilder rb{ctx, 3}; 45 IPC::ResponseBuilder rb{ctx, 3};
46 rb.Push(RESULT_SUCCESS); 46 rb.Push(RESULT_SUCCESS);
47 rb.Push<u16>(0x500); 47 rb.Push<u16>(0x1000);
48} 48}
49 49
50Controller::Controller() : ServiceFramework("IpcController") { 50Controller::Controller() : ServiceFramework("IpcController") {