From cfed6936f3c0d912bcc05f640341adb990b61d90 Mon Sep 17 00:00:00 2001 From: bunnei Date: Mon, 10 May 2021 15:43:42 -0700 Subject: hle: service: sm: Increase point buffer size. --- src/core/hle/service/sm/controller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { IPC::ResponseBuilder rb{ctx, 3}; rb.Push(RESULT_SUCCESS); - rb.Push(0x1000); + rb.Push(0x8000); } // https://switchbrew.org/wiki/IPC_Marshalling -- cgit v1.2.3