Merge pull request #3546 from FearlessTobi/pointer-buffer-size

sm/controller: Increase PointerBufferSize
This commit is contained in:
bunnei 2020-03-22 23:31:08 -04:00 committed by GitHub
commit dc4415811c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ void Controller::QueryPointerBufferSize(Kernel::HLERequestContext& ctx) {
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
rb.Push<u16>(0x500);
rb.Push<u16>(0x1000);
}
Controller::Controller() : ServiceFramework("IpcController") {