summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2021-05-10 15:43:42 -0700
committerGravatar bunnei2021-05-10 15:43:42 -0700
commitcfed6936f3c0d912bcc05f640341adb990b61d90 (patch)
tree74e5f473b7b84b613a440815e9bbc2d476f23a1b
parenthle: ipc_helpers: Reserve session resource when we create a KSession. (diff)
downloadyuzu-cfed6936f3c0d912bcc05f640341adb990b61d90.tar.gz
yuzu-cfed6936f3c0d912bcc05f640341adb990b61d90.tar.xz
yuzu-cfed6936f3c0d912bcc05f640341adb990b61d90.zip
hle: service: sm: Increase point buffer size.
-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 ee026e22f..a8f5125ab 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>(0x1000); 47 rb.Push<u16>(0x8000);
48} 48}
49 49
50// https://switchbrew.org/wiki/IPC_Marshalling 50// https://switchbrew.org/wiki/IPC_Marshalling