Browse Source

hle: service: sm: Increase point buffer size.

nce_cpp
bunnei 5 years ago
parent
commit
1e211a1b15
  1. 2
      src/core/hle/service/sm/controller.cpp

2
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<u16>(0x1000);
rb.Push<u16>(0x8000);
}
// https://switchbrew.org/wiki/IPC_Marshalling

Loading…
Cancel
Save