Skip to content
Snippets Groups Projects
Commit 57524546 authored by Lioncash's avatar Lioncash
Browse files

sm/controller: Correct return value of QueryPointerBufferSize

This should be returning a u16 according to Switch Brew.
parent 301baaa9
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ void Controller::DuplicateSessionEx(Kernel::HLERequestContext& ctx) {
void Controller::QueryPointerBufferSize(Kernel::HLERequestContext& ctx) {
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
rb.Push<u32>(0x500);
rb.Push<u16>(0x500);
LOG_WARNING(Service, "(STUBBED) called");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment