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

set: Correct return code size of value in GetAvailableLanguageCodes()

The return code should be 32-bit in size.
parent c994cdc5
No related branches found
No related tags found
No related merge requests found
......@@ -33,9 +33,9 @@ void SET::GetAvailableLanguageCodes(Kernel::HLERequestContext& ctx) {
}};
ctx.WriteBuffer(available_language_codes);
IPC::ResponseBuilder rb{ctx, 4};
IPC::ResponseBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
rb.Push(static_cast<u64>(available_language_codes.size()));
rb.Push(static_cast<u32>(available_language_codes.size()));
LOG_DEBUG(Service_SET, "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